Search found 6797 matches

by DSguru2B
Thu Jul 06, 2006 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Start Loop in DS7.1
Replies: 38
Views: 9090

I vaguely remember the post you are mentioning. Can you kindly provide me the link to that post so that i can refresh my memory and help you.
by DSguru2B
Thu Jul 06, 2006 12:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple conditions to remove duplicates
Replies: 12
Views: 2934

tell me this, when you say "and duplicates doesnt exist" in your logical code, what do you exactly mean by that, does that mean that the count(B.key) = 1 only ?
by DSguru2B
Thu Jul 06, 2006 12:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i convert foxfro tables into text file's
Replies: 9
Views: 2152

Cant you export the table to a csv file or a tab delimited file like in access?
Check out this post to export a foxpro table to a text file
by DSguru2B
Thu Jul 06, 2006 11:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Start Loop in DS7.1
Replies: 38
Views: 9090

Maybe write your own job control :?
by DSguru2B
Thu Jul 06, 2006 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple conditions to remove duplicates
Replies: 12
Views: 2934

When you say duplicates should not exist, do you mean completely identical records? If yes then pass both the files through the hashed files. That will take care of identical records. Create those hashed file "in the project account". Access the hashed files with the universe stage and do a sql join...
by DSguru2B
Thu Jul 06, 2006 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle table was locked when stopping a job in director
Replies: 15
Views: 3356

I dont think there is any evidence, because i was thinking about Array size in my head and saying Transaction size. Its actually the Array size that absolutely has to be set to 1 in "insert/update" or "update/insert" sql action, and if set higher, DS will set it to 1 during runtime. I stand corrected
by DSguru2B
Thu Jul 06, 2006 7:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem of key generation while loading a file in 2 targets
Replies: 5
Views: 995

Re: Problem of key generation while loading a file in 2 targ

Amar_nath wrote:QUESTION::
Now that instances work fine in Job Sequence but i m putting them in parallel (no link in between)



Yea, kinda missed that part.
Look at the source code that it generates. You will see that it does get fired in parallel (maybe a slight difference that is negligible).
by DSguru2B
Thu Jul 06, 2006 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle table was locked when stopping a job in director
Replies: 15
Views: 3356

Even i was under that impression, as thats how the DRS stage works. Well, guess the OCI stage works differently.
by DSguru2B
Thu Jul 06, 2006 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem of key generation while loading a file in 2 targets
Replies: 5
Views: 995

It will be loaded in the order that you have specified in the transformer (link ordering). But the order of load will be per record following a round robin mechanism. It might seem on the canvas that one is getting loaded before the other, but that is really not the case.
by DSguru2B
Thu Jul 06, 2006 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Sequence from command line
Replies: 11
Views: 2662

Over the command line, you cannot compile, just reset the job.
by DSguru2B
Wed Jul 05, 2006 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on SETFILE &VOC
Replies: 3
Views: 1970

SETFILE is basically use to create a VOC pointer for that particular file in the project. Its like an alias for a file. Its used to access out of account hashed files. eg: SETFILE /my/hashed/file/myhashedfile accessible now you can import metadata for "myhashedfile" by importing the file "accessible...
by DSguru2B
Wed Jul 05, 2006 8:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IncLotsHashToTable..Dstage: ORA-01400: cannot insert NULL in
Replies: 5
Views: 1310

Re: Notnull coulmn trying to insert null

Hi Linkname.coulmnname =0 OR Linkname.coulmnname =0 Or Linkname.coulmnname =0 That will not handle nulls. If you want to filter out the null values you need something like ISNULL(Linkname.coulmnname1) = 0 OR LEN(trim(Linkname.coulmnname1)) <> 0 AND ISNULL(Linkname.coulmn...
by DSguru2B
Wed Jul 05, 2006 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server File System Getting Full
Replies: 8
Views: 1714

You can set the number of days limit in the director after which it will purge the log files. Other than the director, there is a job present at ADN which clears all the log files. You might want to take a look at that. Is there anything specific you are doing which is rendering your file disk space...
by DSguru2B
Wed Jul 05, 2006 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what's new in 7.5.2 release?
Replies: 6
Views: 1303

Thats called a wink with a touch of sarcasm in it, Right Craig!
by DSguru2B
Wed Jul 05, 2006 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing file name dynamically
Replies: 2
Views: 656

As loveojha2 mentioned, use job parameters. But you need to set the values of job parameters from outside the job. So you need either a script or a control job to do that. Search the website for relative examples as this has been covered a lot here.
Regards,