Search found 46 matches

by nitkuar
Thu Nov 18, 2010 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to assign a default value to a generated column ?
Replies: 4
Views: 12304

Open Edit Column Metadata window for newly added column and there you have the option of defaulting this new field to a constant value instead of randomly generated data on the basis of specified datatype.
by nitkuar
Wed Nov 10, 2010 11:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading of csv file using Seq File Stage
Replies: 10
Views: 4495

Re: Reading of csv file using Seq File Stage

Please read my posting clearly before suggestion I am saying comma within quotes is getting treated as delimiter which should not..THATS MY ONLY CONCERN PLEASE DONT SUGGEST, LENGHT PROBLEM OR SOME TRUNCATION PROBLEM. this is not the way of asking for favour... this is a professional forum, please t...
by nitkuar
Tue Nov 09, 2010 12:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get Reject records
Replies: 10
Views: 5892

could you please provide sample record having junk characters
by nitkuar
Tue Nov 09, 2010 11:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User Defined SQL
Replies: 3
Views: 2760

Is this question for Ray only :!:
by nitkuar
Tue Nov 09, 2010 6:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime Error
Replies: 16
Views: 8247

This also doesn't looks sufficiant information for debugging :!: . Please explain your job design, database etc.
by nitkuar
Tue Nov 09, 2010 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while Iam extracting the data from sequential file
Replies: 3
Views: 3357

Starting two threads for a same problem won't speed up resolution of your problem. Moreover if your previous post Unable to read the dataset is resolved then mark it as resolved with the solution implemented so that could be useful later for other guys as well, else respond to that. Don't leave them...
by nitkuar
Mon Nov 08, 2010 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion into meaningful date
Replies: 5
Views: 2622

Palak,
Could you please let us know your database and its version. Also if your query is resolved, please mark it as Closed.
by nitkuar
Mon Nov 08, 2010 1:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL
Replies: 25
Views: 14853

Kenny, I don't have datastage access at the moment, so can't try it on my side. But still , want you to give a last shot by assigning datatype of this field as VARCHAR all throughout the job starting from source to target. If it still doesn't works, will try it tomorrow if you don't get solution by ...
by nitkuar
Mon Nov 08, 2010 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL
Replies: 25
Views: 14853

not sure why this is happening... but try using trimming in a stage variable with varchar datatype and use that stage variable in the column derivation.
by nitkuar
Mon Nov 08, 2010 1:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL
Replies: 25
Views: 14853

it looks fine... :shock:

try using this one:

Code: Select all

If IsNull(TrimLeadingTrailing(DSlink44.user_name)) then ' ' Else DSLink44.user_name
Post error log as well.
by nitkuar
Mon Nov 08, 2010 12:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Assignment of a NULL value to a NOT NULL
Replies: 25
Views: 14853

could you please also post the exact column derivation of this field used in transformer stage.
by nitkuar
Mon Nov 08, 2010 12:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read the dataset
Replies: 3
Views: 3018

Is this the complete error message from logs?

Make sure that you are able to read dataset in target dataset stage of your first job. If yes, then try to view the dataset in source dataset stage of second job. If any of these steps fail, there is no need to run your second job.
by nitkuar
Mon Nov 08, 2010 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: new line character as deimiter
Replies: 19
Views: 8956

raji33 wrote:i dont know exactly what it is but what ever it may be iam converting that to , by using that command in filter
if you don't know exactly what it is, then how could you substitute it with another character. :wink:

Did you try using my other solution.
by nitkuar
Mon Nov 08, 2010 12:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: new line character as deimiter
Replies: 19
Views: 8956

Just curious, why do you want to first convert newline to ',' character and then want to use ',' character as record delimiter.

Simply use UNIX newline as record delimiter without any substitution.