Search found 6797 matches

by DSguru2B
Wed May 23, 2007 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix Scritp with Multi Instance
Replies: 2
Views: 913

You need to surround the DSJobInvcationId with hashes(#).
by DSguru2B
Wed May 23, 2007 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in storing the SQL o/p into DS Varaible
Replies: 4
Views: 1037

A job before this job. That runs your sql and stores it in USER STATUS. Then the second job is invoked which passes the value of USER STATUS to a job parameter. Bind the two jobs using a sequence job. Alternately, you can also land your value to a flat file and in the sequence job, cat the result of...
by DSguru2B
Wed May 23, 2007 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Parameters in Execute Command Stage
Replies: 9
Views: 2543

chulett wrote:You said your three arguments in the stage were 'separated by spaces , as required by the shell script' and yet this seems to show you actually have commas there.

O yea, that too. :wink:
by DSguru2B
Wed May 23, 2007 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Parameters in Execute Command Stage
Replies: 9
Views: 2543

Read the error message. Its not able to find oos_env.sh and /callbase.out. Fully qualify these files within your original script.
by DSguru2B
Wed May 23, 2007 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning Problems in Join,Merge and Lookup
Replies: 5
Views: 2074

Try to get rid of the warnings instead of demoting it. Search on the error message on the "How to". As for message handling, you can only do it from the director. No method, that I know of, can demote the warning message within a job, other than in a modify stage using NOWARN, but thats for modify s...
by DSguru2B
Wed May 23, 2007 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while trying to load timestamp data into oracle
Replies: 8
Views: 1689

What is the ORA code that you are getting? Also tell us, what is the length and scale that you are using for this particular field.
by DSguru2B
Tue May 22, 2007 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp from date
Replies: 5
Views: 1678

Don't worry about the millisecond part. The database will add it. As for the file, specify the default timestamp in the target sequential file stage.
by DSguru2B
Tue May 22, 2007 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp from date
Replies: 5
Views: 1678

Change the default timestamp of your output stage to
%yyyy-%mm-%dd-hh.nn.ss.6
by DSguru2B
Tue May 22, 2007 1:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing Nulls.........
Replies: 8
Views: 1920

It will be skipped.
by DSguru2B
Tue May 22, 2007 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sigbus
Replies: 10
Views: 3270

You should have given us the entire error message from the very begining. You main error is "This server does not support transactions". Take this error with your dba and see what he/she has to say.
by DSguru2B
Tue May 22, 2007 11:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sigbus
Replies: 10
Views: 3270

But with ODBC stage, 32bit or 64bit should not matter as an external third party odbc driver is being used. Anywho, there is something else going on. Just for debugging, load to a flat file. See if the error persists. If it goes away then we have isolated the problem to be in the odbc stage. Then tr...
by DSguru2B
Tue May 22, 2007 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage and CORBA
Replies: 14
Views: 4098

A stand alone program is a package that can be invoked by any program. Either manually, or via a scheduller. Like a shell script. If you can package your CORBA program as a stand alone entity then it can be called from within DataStage.
by DSguru2B
Tue May 22, 2007 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before job Routine!
Replies: 2
Views: 1031

You can do it within the before/after job subroutine. Look into DSLogEvent(), DSLogFatal() or DSLogWarn() API calls.
by DSguru2B
Tue May 22, 2007 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage and CORBA
Replies: 14
Views: 4098

And you would probably use WaitForFile activity to ensure that Corba has written the data to a file on your OS filesystem. You may still face issues if you have to send something back to corba(handshaking), in which case , the wait for file should trigger a job or routine that creates a file that c...
by DSguru2B
Tue May 22, 2007 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sigbus
Replies: 10
Views: 3270

Is this the first job with the ODBC stage thats having a problem? What other stages are you using? SIGBUS usually happens when an attempt is made to access a memory address that is out of reach or may be invalid.
What datatypes are you using? What database is it? 32bit database or 64 bit?