Search found 6797 matches

by DSguru2B
Tue May 22, 2007 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage and CORBA
Replies: 14
Views: 4098

How about adding an additional layer. Call the CORBA interface, land your data in a staging file. And read that file from DataStage. If you can create a stand alone program to invoke CORBA which can be called from command line interface, then you can invoke it from within datastage.
by DSguru2B
Tue May 22, 2007 8:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ConnectToDB2 routine
Replies: 9
Views: 2540

...which was advised in the very first place. And if you do that, then even your DB2 stage will work. No need for a routine.
by DSguru2B
Tue May 22, 2007 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unlock Table
Replies: 3
Views: 1097

If its DB2UDB and the table is empty only then, you can do a Load from /dev/null . This also gets rid of any table locks on UDB's. Get the exact syntax from google by searching for "How to truncate a UDB table?" Only try this if its UDB. If its DB2, then all the tables in that particular table space...
by DSguru2B
Tue May 22, 2007 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sigbus
Replies: 10
Views: 3270

What is your job design? Sometimes it helps by recreating the job. Try that.
by DSguru2B
Tue May 22, 2007 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage and CORBA
Replies: 14
Views: 4098

Never done it, never saw it done. Get in touch with your support provider.
by DSguru2B
Tue May 22, 2007 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log
Replies: 1
Views: 613

You need to roll your own custom code for that. Look at the code of DSJobReport and DSSendMail(). I am sure you can merge the functionality of both into a single routine.
by DSguru2B
Tue May 22, 2007 7:13 am
Forum: General
Topic: converting null string to date format
Replies: 7
Views: 2427

Is that particular column nullable in the table?
Also look at the .bad file for oracle error message.
by DSguru2B
Tue May 22, 2007 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage and CORBA
Replies: 14
Views: 4098

How exactly do you intend to merge the two technologies?In other words, what exactly is your question again :roll: ?
by DSguru2B
Tue May 22, 2007 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Current Timestamp in to DB2
Replies: 10
Views: 2514

Then I will be seeing micro-organisms within the internal dates. :wink:
Why I said its the same thing is because both @Date and Date() return internal formats. Same is the case with @Time and Time().
by DSguru2B
Tue May 22, 2007 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance tuning by using container
Replies: 2
Views: 999

A shared container is merely a reusable ground. As Craig already pointed out, no performance gain can be experienced with the use of one.
by DSguru2B
Mon May 21, 2007 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSjob runs fine when using a table but fails using a view
Replies: 4
Views: 936

Can you use the the same username and password and access the table from your favourite sql tool?
by DSguru2B
Mon May 21, 2007 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the value of a sequence from an Oracle stage.
Replies: 12
Views: 3073

Why do you have to do a lookup again? Can't you get the seq.nextval in your source itself?
Something like

Code: Select all

select A.Col1, A.Col2, A.Col3, (select seq.nextval from dual) AS Unique_No from Table A


Possible ???
by DSguru2B
Mon May 21, 2007 11:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Final delimiter or Record delimiter
Replies: 2
Views: 897

In a server job There is only a delimiter to be specified in a server sequential file stage, which is, the field delimiter. There is no record delimiter. The record delimiter will be specified by either Unix Style or DOS Style line termination. There is no property called Record Delimiter in server ...
by DSguru2B
Mon May 21, 2007 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix- Dos Style Issue
Replies: 8
Views: 2356

Half glass empty, half glass full. :wink:
by DSguru2B
Mon May 21, 2007 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to kill or release a DS job.
Replies: 7
Views: 2516

Please delete your other post in the Site Forum.
As for your query, you can search on it. There are zillions of posts on it, some of which outline the entire step by step process. Make sure you use the id with which the jobs were locked in the first place.