Search found 6797 matches

by DSguru2B
Wed Aug 23, 2006 12:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stop the job after 1 read row
Replies: 8
Views: 2048

Split the job. Simple as that. Aborting the job or even stopping the job before its true end doesnt always comeout with good results, IMHO. Thats why i advised to finish the job by limiting the execution to one row.
by DSguru2B
Wed Aug 23, 2006 12:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: This jobtype is not currently runnable on this platform
Replies: 7
Views: 4114

Ouch :oops: , typo. Thats what i meant, 7.5x2
by DSguru2B
Wed Aug 23, 2006 12:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error retrieving results from server
Replies: 8
Views: 3725

Try to run the view at the command line and collect its contents in a file. Then do a wc -l on the file to check the number of records. If it is what you are getting via DataStage then the sql for creating the view is too huge to accomodate that amount of records in the database memory. For that you...
by DSguru2B
Wed Aug 23, 2006 12:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: create user on server
Replies: 4
Views: 1187

First of all you need a unix id, that can access the DataStage server. Your unix admin can take care of that. Then you need to add that to the DataStage group. Even that only the admin can do that.
by DSguru2B
Wed Aug 23, 2006 12:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String aggregation
Replies: 11
Views: 3940

I think even the row merger can take care of your problem. Look into the row merger stage.
by DSguru2B
Wed Aug 23, 2006 12:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stop the job after 1 read row
Replies: 1
Views: 624

DUPLICATE POST: Please delete this post.
by DSguru2B
Wed Aug 23, 2006 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stop the job after 1 read row
Replies: 8
Views: 2048

Or you can specifiy the limit as 1 row in the director. You can also specify it in command line.
by DSguru2B
Wed Aug 23, 2006 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error compiling generated subroutine for stage
Replies: 7
Views: 4462

Double check all the derivations, stage variables and constraints in the transformer. Something in there is causing the problem.
Have you encountered similar problems with any other job?
by DSguru2B
Tue Aug 22, 2006 11:32 pm
Forum: Site/Forum
Topic: Ken Hits 4000
Replies: 17
Views: 8797

Ken Hits 4000

At this point, Kenneth Bland is one post away from 4k. I, personally, have gotton so much support and encouragement from him. Thanks for helping us carve our path in better understanding ETL concepts, DataStage tips and tricks and in becoming better ETL developers. Congratulations on accomplishing t...
by DSguru2B
Tue Aug 22, 2006 11:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error retrieving results from server
Replies: 8
Views: 3725

Are you getting this warning for all the records? I mean is your director's log filled with warnings? You need to get the date or timestamp in the correct format. What is your source? Is your source DB2 as well?
by DSguru2B
Tue Aug 22, 2006 11:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller problem: Error calling DSRunJob,code=-14
Replies: 8
Views: 8481

Give us some details of your sequence, like how many jobs are being called in parallel, how many stages do those jobs have that are called in parallel?
by DSguru2B
Tue Aug 22, 2006 11:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing to Oracle Table is slow
Replies: 8
Views: 2289

Even with indexing, you cannot get a enormous boost in the performance if the target stage is set to Insert and update or update and insert. For 12M records, it would be a better to go with Ken's recommendation. A logged activity for this size of data set will be slow.
by DSguru2B
Tue Aug 22, 2006 11:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: This jobtype is not currently runnable on this platform
Replies: 7
Views: 4114

Welcome Aboard :)
If you are on DS 7.1 or less then you may not be able to run PX jobs on a windows platform. This was possible with version 7.2 as balajisr noted. You might be able to build and compile it but not execute it.
Regards,
by DSguru2B
Tue Aug 22, 2006 11:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting Date part from File Name
Replies: 2
Views: 674

If you can get a list of all the files present in the folder you want to manipulate then you can read it via a sequential file and then use the field function to extract the date and the terminal id. Otherwise you can use write a small script to read in the files and use the power of awk to get the ...
by DSguru2B
Tue Aug 22, 2006 7:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MS SQL Server Load stage equivalent in PX in UNIX??
Replies: 7
Views: 2840

The SQLServer Load stage is not available for unix platform, thats why this workaround of building the flat file, ftp'ing it over to the windows server and then invoking the bulk loader.