Search found 6797 matches

by DSguru2B
Tue Jan 16, 2007 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Redbrick
Replies: 10
Views: 2669

Welcome Aboard 8)
Confirm this for me, does the data get loaded or not? Also, the control files will be created in the directory you provided in "Control File Directory" property. Also, what is the file name that you are providing, if you are not providing any name it will default to table_name.tmu
by DSguru2B
Mon Jan 15, 2007 7:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding stage variables
Replies: 3
Views: 758

And now you can mark your post as Resolved. Make it a practice.
by DSguru2B
Mon Jan 15, 2007 6:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Naming a file with the Job Run Timestamp with microseconds
Replies: 3
Views: 881

You can rename the file in the after job subroutine using the unix date function as part of the file name.
by DSguru2B
Mon Jan 15, 2007 6:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Add new character for the first record
Replies: 7
Views: 1989

Switch the conditional check for more efficiancy. As your @INROWNUM = 1; condition will only be true once. If you have millions of records, it will make a difference.
by DSguru2B
Mon Jan 15, 2007 6:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage parrallel with intel or amd
Replies: 19
Views: 6214

You guys still in a tag-o-war on which one is better. geez...
by DSguru2B
Mon Jan 15, 2007 1:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding DSUtility
Replies: 38
Views: 5659

-lparam will give you a list of all the parameters. So paraminfo is what you want now? You are seriously confusing. IF you want to do this at the OS level, create a dos batch job that reads from a list, loops through the dsjob -paraminfo command and passes the parameter read from the list one by one...
by DSguru2B
Mon Jan 15, 2007 1:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Kick off job based on table entry
Replies: 4
Views: 1106

Hi, If lets say there are 5 jobs that are required to be run but in a specific sequence, can we control that too, I am looking in to the UtilityRunJob, but trying to understand the design to in corporate the job dependencies. Thanks ! Yes it can be controlled. Depends upon what sequence fed to the ...
by DSguru2B
Mon Jan 15, 2007 1:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Kick off job based on table entry
Replies: 4
Views: 1106

UtilityRunJob() is just present in server i believe, not too sure, dont have access to DS right now so cannot validate that. Populate the table into a flat file, have a small shell script read that file line by line and pass the jobname to dsjob command. You can control this in a sequence job.
by DSguru2B
Mon Jan 15, 2007 11:59 am
Forum: Site/Forum
Topic: Great Sixer!!!
Replies: 12
Views: 5137

Let wikipedia throw some light on sixes/sixer.
by DSguru2B
Mon Jan 15, 2007 11:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete with no log in DB2
Replies: 5
Views: 2159

And who in the world told you that it will not work in the before sql tab. Never 'assume'. Test it out yourself first before confirming any one else's notion. Anyways, thanks for the info, you can now mark your post as resolved.
by DSguru2B
Mon Jan 15, 2007 11:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Aborted
Replies: 2
Views: 1836

Do an exact search on keywords "Add block to queue failed". See if the search comes back with any useful hits.
by DSguru2B
Mon Jan 15, 2007 11:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the fraction of seconds in the time hh:mm:ss-sss
Replies: 12
Views: 4352

Yea but it should still work in a sequence job. Try it, if it doesnt, o bugger. Plus Whale's code wont give you the franction seconds part. Are you talking about current date and timestamp to be concatenated to the target file? I am still confused on that part.
by DSguru2B
Mon Jan 15, 2007 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error viewing log, Computed blink does not match expected
Replies: 17
Views: 11499

If you cleared it then its gone. Re-run the same job with warning limit set to maybe 2 or 3. This way you can view the log in the director and see why those warning messages were created. It will also keep the log file size in check.
by DSguru2B
Mon Jan 15, 2007 11:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage job scheduling problem
Replies: 5
Views: 2338

Or if this completely falls on your shoulders then you can incorporate this logic is a small script. The script will take the current date and check if its first saturday, second, third or fourth. Depending upon that it will assign the parameters via the dsjob command and run the job. You can also i...