Search found 231 matches

by DS_SUPPORT
Fri Oct 17, 2008 3:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: rounding off of decimal digits in ORAOCI 9i stage
Replies: 7
Views: 2370

What is the data type of the column P_ID in your target, and how you have defined in your job?
by DS_SUPPORT
Fri Oct 17, 2008 2:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do we know the Job Running status?
Replies: 4
Views: 2330

You can simply use the Sequence job, and set the property as "Reset If Required, then run", So if the was aborted in the previous run, it will reset and run the job. And if you want to get the status of the job, you can write a routine or Subroutine, something like FUNCTION GetJobStatus (J...
by DS_SUPPORT
Thu Oct 16, 2008 2:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String Manipulation Reverse / InStrRev
Replies: 4
Views: 2895

Try

Code: Select all


Field(InputCol," ",Dcount(InputCol," "))

Change the " " (Space) to your desired delimeter.
by DS_SUPPORT
Wed Oct 08, 2008 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export several jobs to one file using command line
Replies: 5
Views: 2482

There is a way, to append all the jobs to a single dsx. Do it as like what you are doing now, and after each execution append the dsx to a different file. you need to do Some thing like ::****************Begin Export Loop For /F "tokens=1" %%i in (C:\export\DsxList.txt) do ( echo **** Expo...
by DS_SUPPORT
Mon Oct 06, 2008 10:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Enabling Bulk Mode in DRS
Replies: 7
Views: 1684

Thanks , I understood it.
by DS_SUPPORT
Mon Oct 06, 2008 9:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Enabling Bulk Mode in DRS
Replies: 7
Views: 1684

Ok , Thanks for the immediate reply Ray.

Is there any other way to enable it, by calling another job, wherein I can use OCI Stage ?
by DS_SUPPORT
Mon Oct 06, 2008 9:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Enabling Bulk Mode in DRS
Replies: 7
Views: 1684

The topic is here The dynamic RDBMS Stage takes advantage of the native interface of the database. You can also load data in bulk mode. PeopleSoft's EPM delivers hundreds of jobs to move data from the ERP applications to the different layers of data warehouse. Only one version of each job is deliver...
by DS_SUPPORT
Mon Oct 06, 2008 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Enabling Bulk Mode in DRS
Replies: 7
Views: 1684

Enabling Bulk Mode in DRS

In one of the post, i have read that we can enable bulk loading in DRS Stage also. Can you please explain , how to do it?
by DS_SUPPORT
Mon Oct 06, 2008 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine Through Command Line
Replies: 8
Views: 4954

Ray,

Can you Share some examples related to writing "main" program?
by DS_SUPPORT
Sun Oct 05, 2008 9:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine Through Command Line
Replies: 8
Views: 4954

You can create a dummy job and call the required routine, where you can pass the arguments as job parameters, and execute the job in command line. And set the output of the routine to UserStaus.
by DS_SUPPORT
Tue Sep 30, 2008 8:51 am
Forum: General
Topic: Environment Variables versus Hard Coded values
Replies: 12
Views: 7970

What Stage you are using for Selecting the rows from Database, and what is the exactr error you are getting?
by DS_SUPPORT
Mon Sep 29, 2008 2:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Routine though varibale
Replies: 2
Views: 1160

Yes , you can do that. Define the first routine inside the second routine, by using DEFUN. DEFFUN FirstRoutine(Arg1) Calling "DSU.FirstRoutine" And then in your code, you can just get the values like TVar = FirstRoutine(SomeVal) Or If this doesnt solve your purpose, Ray Recently posted som...
by DS_SUPPORT
Fri Sep 19, 2008 2:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to create unique sequence no with reference to primary
Replies: 9
Views: 2756

Use KeyMgtNextValueConcurrent(YOURJOBNAME), so it will maintain sequence based on each job.
by DS_SUPPORT
Thu Sep 18, 2008 11:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to create unique sequence no with reference to primary
Replies: 9
Views: 2756

Yes, Your sequence number will start with 1, and for the next run also, it will give you the next max number. You dont have to do any extra settings for achieving this.

But when using, consider changing 'whateverstring' to some meaningful string.
by DS_SUPPORT
Thu Sep 18, 2008 10:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while importing sequence
Replies: 4
Views: 1441

While logging into the Datastage, are you using OMIT option,
If you are using OMIT, these type of problems occur. Log in by using proper credentials, and import the dsx.