Search found 41 matches

by ratikmishra1
Mon Jan 23, 2006 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS_JOBOBJECTS query for OCI stages
Replies: 4
Views: 2340

DS_JOBOBJECTS query for OCI stages

I'd like to develop a script that gets all the OCI stages of a project and provides the table name, mode (inert/update etc) for input/output stages.

Is it possible to write a query on DS_JOBOBJECTS to do this?

will appreciate any help.

Thanks
Rati
by ratikmishra1
Thu Dec 08, 2005 11:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to list config parameter values
Replies: 3
Views: 2197

Thank to all of you guys. I truly appreciate your help.

Thanks
Rati
by ratikmishra1
Wed Dec 07, 2005 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to list config parameter values
Replies: 3
Views: 2197

how to list config parameter values

Is there a command to list the current settingg of config parameters i.e T30FILES etc etc which are typically defined in .uvconfig file.

I am not sure whether my changes in the .uvconfig file were applied or not. Hence the reason for asking.

Thanks
Rati
by ratikmishra1
Fri Oct 14, 2005 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job dependency list
Replies: 2
Views: 1302

Job dependency list

I mostly use Batch wrapper for job sequencing. Given a batch name, is there a way to know the list of jobs that got executed from the batch. Like some system table or some system call. Note: I'd not like to scan the source for DSRunJob etc. Nor I'd like to convert to a JobSequencer. Will appreciate ...
by ratikmishra1
Fri Mar 18, 2005 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: setting a specific rollback segment
Replies: 8
Views: 1116

Hi, I use the next sentence in my job : ALTER ROLLBACK SEGMENT RBS31 STORAGE ( OPTIMAL 4000M); SET TRANSACTION USE ROLLBACK SEGMENT RBS31; This will set in the tab SQL sub tab Before and work without problems. Now, after the job you must to restore the old rollback settings. I hope this help. Looks...
by ratikmishra1
Fri Mar 18, 2005 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: setting a specific rollback segment
Replies: 8
Views: 1116

Maybe you can look into the following command: set transaction use rollback segment but it has its contraints and limitations. Thanks to all of you for your suggestions. The before/sql soes not handle the pl/sql driectives. I've tried it before. It works only well for simple SQL statements like del...
by ratikmishra1
Thu Mar 17, 2005 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: setting a specific rollback segment
Replies: 8
Views: 1116

setting a specific rollback segment

Is it possible to set a specifc rollback segment for a OCI stage?If not possible at the stage level, is there any other way to set the rollback segement for the Oracle transactions?

Thanks
Rati
by ratikmishra1
Thu Aug 19, 2004 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle DB access from DS subroutines
Replies: 10
Views: 4165

ray.wurlod wrote:At the TCL prompt, type HELP BCI.

You can download the BASIC SQL Client Interface manual from IBM.
You have been of great help Ray. Thanks a lot.
by ratikmishra1
Wed Aug 18, 2004 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle DB access from DS subroutines
Replies: 10
Views: 4165

The "lib" routines are those in the DataStage BASIC SQL Client Interface (BCI). They mimic programming using the ODBC API. Search the Forum for BCI. To use these requires that you have a licensed ODBC driver for connecting to your Oracle (or other) database. The drivers shipped with DataS...
by ratikmishra1
Wed Aug 18, 2004 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle DB access from DS subroutines
Replies: 10
Views: 4165

tonystark622 wrote:Why don't you just do it in a DataStage job?

Tony
I can. But it is messy. Like use OCI/ODBC to get the thing into a file. Then read the file to get the values into varaiables. Would like to do it directly in the batch/subroutine so the code would be lot cleaner/reusuable.
by ratikmishra1
Wed Aug 18, 2004 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle DB access from DS subroutines
Replies: 10
Views: 4165

oracle DB access from DS subroutines

How would you access oracle DB from a DS subroutine/batch . I need to log onto oracle and execute a select statement and get the records using a loop, then write out the records to a sequential file. Need to do all this in the Batch job. Note: I dont want to use shell exits. Would like to use some l...