Search found 246 matches

by hamzaqk
Fri Apr 11, 2008 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error writing to pipe: Interrupted system call
Replies: 5
Views: 4031

More of a OS level problem. As far as i can get it i think when you try to run it with the sequence the job aborts and then when you manually run it it works just fine ? in that case you might want to see if the user which is created when running the sequence has rights to write to a file on the sys...
by hamzaqk
Fri Apr 11, 2008 4:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Carry forward rows that do not match in Hashed file
Replies: 28
Views: 6901

put this constraint on the accept link i.e. matching records with the hash file

Code: Select all

NOT(ReferenceLink.NOTFOUND) 
. check the reject row option for the second output link
by hamzaqk
Fri Apr 11, 2008 4:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error writing to pipe: Interrupted system call
Replies: 5
Views: 4031

Did you specify the data file in the MLoad option ? , try running it with pipes option check in the general tab. should solve the problem
by hamzaqk
Wed Apr 09, 2008 11:32 pm
Forum: Site/Forum
Topic: How to list all job name created by a user
Replies: 9
Views: 5104

This would pertain to metadata as you will be trawling through the DS repository in order to fetch the required information..........
by hamzaqk
Wed Apr 09, 2008 11:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clear log
Replies: 7
Views: 1755

Did you mean purge the last log before running the job again ?
by hamzaqk
Tue Apr 01, 2008 1:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Fatal Error: No match for pname: db_cs, which:
Replies: 7
Views: 4036

thanks for clearing that one up. i was'nt sure on that
by hamzaqk
Tue Apr 01, 2008 1:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Fatal Error: No match for pname: db_cs, which:
Replies: 7
Views: 4036

you might want to check what is causing the warning and value of that enviroment variable. PWD i think would have do something with the password for connecting to oracle ?
by hamzaqk
Mon Mar 31, 2008 11:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Fatal Error: No match for pname: db_cs, which:
Replies: 7
Views: 4036

Would be a good idea if you could post the whole log then ?
p.s i think you might want to double check the values you are specifying for the enterprise stage. and what is pname ??
by hamzaqk
Mon Mar 31, 2008 11:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: main_program: Fatal Error: No match for pname: db_cs, which:
Replies: 7
Views: 4036

Can you shed a bit more light on where are you getting this error ? are you being able to view the file properly ? Are you using parameters?
by hamzaqk
Mon Mar 31, 2008 10:47 pm
Forum: General
Topic: IBM to Acquire Informatica
Replies: 12
Views: 5635

good one for 1st april !
by hamzaqk
Sun Mar 30, 2008 11:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: View data problem in Teradata Enterprise Stage
Replies: 7
Views: 2513

How many Amps do you have on TD ? Try the following and if this doesnt work read the Enterprise guide and follow the formula:

session per player should be set to 3

requested session should be set to 12
by hamzaqk
Thu Mar 27, 2008 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how and which stages are used to main version in SCD 2
Replies: 12
Views: 8319

1.Just perform a join on the natural key columns and seperate the new records from the old ones 2.In the next step assign the surrogate keys to the new records. 3.Third would be the update. . P.S Are my DWH concepts outdated or your talking about type 3 and not 2 here because i thought in SCD type ...
by hamzaqk
Thu Mar 20, 2008 4:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter visibility
Replies: 14
Views: 5277

if they reference each other then yes i think.............
by hamzaqk
Thu Mar 20, 2008 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance Isuue
Replies: 6
Views: 1352

why are you loading data from the hashed file in the first place? and how many records are there in the hashed file ? how big is the overflow file ?
by hamzaqk
Tue Mar 18, 2008 3:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling Functions
Replies: 4
Views: 1863

There is a space and not a null as ArndW mentioned, so cannot use functions such as isnull() here. based on your statement which says there is "a" space. you can check for that and code that in the if then else

Code: Select all

IF input.field ='' then This else That