Search found 6797 matches

by DSguru2B
Mon Dec 11, 2006 9:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.BCIPut call to SQLExecute failed
Replies: 14
Views: 5385

That is correct. As mentioned by Craig. As there is nothing more to delete, it provides that warning. What is your commit level set. I mean what is the transaction size ?
by DSguru2B
Mon Dec 11, 2006 9:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt regarding warnings
Replies: 3
Views: 952

Conversions in PX require explicit handling. You are getting warning because the engine is doing it implicitly and thus screaming, and yes the warning messages are per row basis. I advise use Modify stage to handle exlicit datatype conversions.
by DSguru2B
Mon Dec 11, 2006 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could someone help me with some logic please
Replies: 7
Views: 1953

i believe svCREATIONDATE is a stage variable. Its simply checking if its the first row then current timestamp, else use the derivation in svCREATIONDATE. Now you need to see whats in svCREATIONDATE.
by DSguru2B
Mon Dec 11, 2006 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pass a value in parameter for the next job
Replies: 17
Views: 4642

Is your hashed file present in the Project directory or somwhere else. As pointed out, you need to create a VOC pointer for your 'out for directory' hashed files and then use that pointer as your hashed file name. You need SETFILE for that. If you dont want that then change the UtilityHashLookup rou...
by DSguru2B
Mon Dec 11, 2006 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.BCIPut call to SQLExecute failed
Replies: 14
Views: 5385

You need to provide a value for that question mark, as in, a value for the batch id. If no value is provided you will have incomplete where predicate and hence an incomplete sql command.
by DSguru2B
Mon Dec 11, 2006 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to schedule a batch with different dates in each month
Replies: 5
Views: 1135

Use the advice given earlier to extend to your current requirement. Have your control job run every day. Check if todays date is 4th business day or not. You can use ICONV/OCONV with DW for that. If yes, then run batch1 else run batch2.
by DSguru2B
Mon Dec 11, 2006 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while connection to Oracle Enterprise stage
Replies: 3
Views: 1090

I believe you have special characters in your parameters or maybe even password. Do an exact search on "Incorrect dboption list" and you will find that this has been discussed here before.
by DSguru2B
Mon Dec 11, 2006 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FIND THE CORRECT OF ERROR
Replies: 3
Views: 754

I believe you will have to spot check. i bet your database is Oracle. Right... ? This has been discussed here before and i believe that spot check is the only way to tell.
by DSguru2B
Mon Dec 11, 2006 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use DSLogFatal in Parallel job
Replies: 4
Views: 1784

In JobControl. You can also do this in an after job subroutine where you can use Basic.
by DSguru2B
Sun Dec 10, 2006 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to schedule a batch with different dates in each month
Replies: 5
Views: 1135

Good piece of advice by Craig. If you want to make this dynamice then as Craig said, have a job that checks the date from oracle table. A job that is scheduled to run everyday that checks the current date with the dates in the oracle table, if there is a hit, it puts out a flag in a file. The batch ...
by DSguru2B
Sat Dec 09, 2006 11:06 pm
Forum: Site/Forum
Topic: Great Sixer!!!
Replies: 12
Views: 5137

More like Sixer E3. Great work ArndW. Got to learn a lot from you. A true asset to DSXchange. Keep it up in helping us understand this tool and technology even more.
by DSguru2B
Fri Dec 08, 2006 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Function for Rounding
Replies: 6
Views: 1386

You can also look into the FIX() function.
by DSguru2B
Fri Dec 08, 2006 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dumping the hash file data to flat file easily
Replies: 9
Views: 3318

I doubt you can do a bulk dump to a text file.(Someone correct me if i am wrong) You can surely read it row by row depending upon what key you pass in. You will also be needing to know all the keys for all the hashed files. I think you will be better off creating jobs. You can also pass a select com...
by DSguru2B
Fri Dec 08, 2006 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating an array for a group of records
Replies: 2
Views: 849

Welcome Aboard :P
You need to sort the incoming data with the first column and then the second column. You need to do a row by row comparison. Hereis a similar example.
by DSguru2B
Fri Dec 08, 2006 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating delay in a transformer ?
Replies: 11
Views: 1732

Not possible. Just split the job into two jobs. First job does the link collector part and the second one does the bottom part.