Search found 231 matches

by DS_SUPPORT
Tue Jun 09, 2009 3:34 am
Forum: General
Topic: Importing a sequence and job drops parameters
Replies: 1
Views: 1172

I hope after importing, when you compile the jobs this issue wont occur.
by DS_SUPPORT
Wed Apr 29, 2009 1:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can i use a CASE statement in a SELECT statement ?
Replies: 11
Views: 7988

Thanks a lot Ray.

EVAL worked for me

Thanks
George
by DS_SUPPORT
Tue Apr 21, 2009 3:28 am
Forum: General
Topic: IBM in talks to buy Sun Microsystems
Replies: 4
Views: 1540

Finally Oracle buys Sun.
by DS_SUPPORT
Sun Apr 19, 2009 8:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job execution order
Replies: 6
Views: 2123

Thanks for the answers Hashed File <------- LKP DB | | | | | | v SOurce DB ------>Transformer ------> Target In the above job design, the Hashed File will be populated first, so the link from LKP DB will be executed first. By seeing this design we will be able to identify this, but how and where it ...
by DS_SUPPORT
Sun Apr 19, 2009 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job execution order
Replies: 6
Views: 2123

Job execution order

Is there a way to know the job execution order. Say for example if i have 10 stages, which stage will be executed first, and the sequential order of execution. I did find some thing on DS_TEMPnn and RT_CONFIGnn (like all the stages), but wanted to know their execution order. Can we get this informat...
by DS_SUPPORT
Wed Apr 01, 2009 12:31 am
Forum: General
Topic: Problem with 8.1 Installation
Replies: 2
Views: 1446

yes all the services are running
by DS_SUPPORT
Tue Mar 31, 2009 11:40 pm
Forum: General
Topic: Problem with 8.1 Installation
Replies: 2
Views: 1446

Problem with 8.1 Installation

We are planning to move from 7.5 Server Edition to 8.1 Server Edition. So i am in the process of setting up the 8.1 server. The toplogy we have choosen is having 2 Windows 2003 servers, and in Server 1 , we have installed Service Tier and metadata server (Oracle). And in Server2 , we have installed ...
by DS_SUPPORT
Sun Mar 22, 2009 8:32 pm
Forum: General
Topic: Lookup data in hashed file using a routine?
Replies: 4
Views: 1974

Take a look on the datastage supplied routine UtilityHashLookup, it will do the required things. I hope it works only for account based hashed files, So you might need to create an entry to your hashed file in the VOC using SETFILE. In case you have more than one key for doing a lookup combine them ...
by DS_SUPPORT
Mon Mar 02, 2009 2:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-24909: call in progress. Current operation cancelled
Replies: 4
Views: 5329

based on your terminologies, it seems you are using peoplesoft jobs. Convert the corresponding field data type to longvarchar in the ETL job, as this is the supported datatype for CLOB fields, when using with DRS stage. Alternatively , you can try DBMS_LOB.SUBSTR and use varchar also. You can use DB...
by DS_SUPPORT
Wed Feb 25, 2009 4:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert date value into SQL Server datetime columm
Replies: 31
Views: 28563

Change the Effectivedate in your DRS stage to Timestamp, and make sure you are passing the input in the format 'YYYY-MM-DD HH24:MI:SS', even , if you dont have time part also append it with 00:00:00.

Convert your incoming date from the sequential file to the above specified format, using OCONV.
by DS_SUPPORT
Thu Feb 12, 2009 10:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Job Run Statistics
Replies: 2
Views: 1846

Getting Job Run Statistics

We have huge number of jobs which is already there in production, and now a requirement came to capture the job run statistics to a table. We can do it , by writing a seperate job and call that in the after job subroutine, But this requires , changing all the jobs. I want to achieve this with minimu...
by DS_SUPPORT
Tue Feb 10, 2009 9:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Locate Statement
Replies: 4
Views: 1668

Thanks, I resolved it by using FINDSTR.
by DS_SUPPORT
Tue Feb 10, 2009 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Locate Statement
Replies: 4
Views: 1668

Thanks for the information Ray, I will try that tomorrow. BTW how to read the entire file in a READ statement, in the help i am seeing only READSEQ statement.
by DS_SUPPORT
Tue Feb 10, 2009 12:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Locate Statement
Replies: 4
Views: 1668

Using Locate Statement

Hi All, I am building a dynamic array, by reading a flatfile. My Flatfile will have the values like JOB1,Y,N JOB2,N,N JOB3,Y,Y So i am building the dynamic array (JOBLIST) also in the same manner. So my dynamic array will look like JOB1,Y,N:@AM: JOB2,N,N:@AM: JOB3,Y,Y:@AM: And inside the jobcontrol,...