Search found 6797 matches

by DSguru2B
Tue Jan 30, 2007 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Stored Procudures from MSSQL server in DataStage
Replies: 4
Views: 869

What error message are you getting.
Also try

Code: Select all

call <schemaname>.storedProcName()
by DSguru2B
Tue Jan 30, 2007 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL1652N : File I/O error occurred
Replies: 34
Views: 16058

Are you using any more Bulk Loader jobs in this sequence job which are fired in parallel? I am just guessing here as I am running out of ideas. The Bulk Loder message file, does it contain any helpful messages?
by DSguru2B
Tue Jan 30, 2007 12:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Stored Procudures from MSSQL server in DataStage
Replies: 4
Views: 869

Even the before/after sql tab in the DRS stage.
by DSguru2B
Tue Jan 30, 2007 12:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calculating values based on previous row values
Replies: 6
Views: 1906

You can mark your post as "Resolved" then. :)
by DSguru2B
Tue Jan 30, 2007 12:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL1652N : File I/O error occurred
Replies: 34
Views: 16058

How many times did your try re-running your job? Did it give the same error every single time?
by DSguru2B
Tue Jan 30, 2007 11:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal : node_node1: Player 2 terminated unexpectedly.
Replies: 34
Views: 50742

Thats an excellent find. I think you should write post your entry in the FAQ forum as the SIGKILL is among the dreaded issues for many developers.
by DSguru2B
Tue Jan 30, 2007 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Nulls in Pipe delimited file
Replies: 8
Views: 2626

They cannot be represented as empty characters. They have to be changed to string first and then filled with an empty space. If you would like to retain their type then put the appropriate value. Like say 0 for integer and 0.00 for Decimal (3,2).
by DSguru2B
Tue Jan 30, 2007 10:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date subtraction into seconds
Replies: 7
Views: 1332

Agreed :wink: .
by DSguru2B
Tue Jan 30, 2007 10:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Initialize Transformer stage variables
Replies: 6
Views: 1392

Yea, concatenate all the values with a delimiter in between before assigning it to UserStatus. You can then parse each value using the Field() function,
by DSguru2B
Tue Jan 30, 2007 10:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Re-run DS Job using script
Replies: 5
Views: 1084

I meant about job execution control. How is your process controlled? However it is controlled you can handle the re-runs within it. If its via job sequence then you can do as narasimha suggested. But if I were in your place I would re-evalute the direction your heading. But thats just me.
by DSguru2B
Tue Jan 30, 2007 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: List of DS Engine Commands
Replies: 5
Views: 2003

Welcome Aboard :)
They are basically UV commands that you can find in a UV manual but be very careful on what command you execute. Search this forum for more details.
by DSguru2B
Tue Jan 30, 2007 9:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Re-run DS Job using script
Replies: 5
Views: 1084

How are you controlling the jobs. Is it via a script or Basic Control Job? Plus I dont think its a very good idea on running your job three times due to resources issue or any other issue. But its certainly do-able.
by DSguru2B
Tue Jan 30, 2007 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL1652N : File I/O error occurred
Replies: 34
Views: 16058

Try decreasing the number of parallel events one by one and try to see on what number the error goes away. Just for debugging purposes.
by DSguru2B
Tue Jan 30, 2007 9:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Initialize Transformer stage variables
Replies: 6
Views: 1392

Retrieve the value and Set the UserStatus inside your transformer. In your second transformer you can retrieve in your second transformer while specifying the Initial value of your stage variables. This way it will only be called once. Search on more details on how to set and retrieve UserStatus.
by DSguru2B
Tue Jan 30, 2007 9:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date subtraction into seconds
Replies: 7
Views: 1332

Date() and Time() will give you date and time in internal formats, respectively. You dont need to ICONV them again. All you need is SecondsBetween = (Iconv('01:20:00',"MTS") + (Date() +1)*86400 ) - (Time() + (Date())*86400 )