Search found 459 matches

by rasi
Tue May 09, 2006 6:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: csv file issue
Replies: 3
Views: 1923

Sudheer

What you can do is read your csv file record as one single string and then inside your transformer check the total commas you expect for good records. Have two links as ouput. One being the good ones which you wanted to use and the other for the rejected records.
by rasi
Mon May 08, 2006 7:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: delete large number of records in DB2
Replies: 17
Views: 16744

Hi Gaurav

Use Kenneth's stored procedure which is the most efficient way to delete records in your case. And do the REORG once all the records are deleted. The REORG will increase the performace whenever there is big change to the table. Involve DB2 DBA to do this when the system is idle.
by rasi
Thu Mar 30, 2006 7:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: keymgt slow performance?
Replies: 37
Views: 13970

Rachel 3 to 4 rows per second is not normal. I suspect something is wrong. From Sequential to Sequential without having any complexity inside your transform it should come up with few thousand records per second atleast. By the way how many columns are there in your sequential file. Try to run this ...
by rasi
Thu Mar 30, 2006 12:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence - Please advice
Replies: 4
Views: 1390

Hi

Have a custom conditional trigger on the three jobs to check the status of each job and send all three links to Routine Activity where you can call AbortJob Routine to abort you sequence
by rasi
Wed Mar 29, 2006 11:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rows to colums using pivot stage
Replies: 3
Views: 1820

First do a search on the forum for Pivot....

For Urgent you need to hire consultant immediately...In DSXchange urgent = ignore
by rasi
Wed Mar 29, 2006 9:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: keymgt slow performance?
Replies: 37
Views: 13970

Rachel Welcome to DSXchange KeyMgtGetNextValue and KeyMgtGetNextValueConcurrent is same except the latter is used when you have multiple jobs running at the same time to get the keys. First if you don't think that is never going to happen then you will be better of using KeyMgtGetNextValue. Second y...
by rasi
Wed Mar 29, 2006 9:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle error in parallel job
Replies: 6
Views: 2216

Are you trying do any FLASHBACK option in Oracle 10G. What is that you are trying to do. Post your SQL to understand the problem in detail... How frequently it happens. Oracle 10G has options like purge dba_recyclebin purge recyclebin purge user_recyclebin But I would suggest you to discuss with you...
by rasi
Tue Mar 28, 2006 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem With Datastage Project
Replies: 14
Views: 4795

Vinod

When did you took your last datastage project backup?....
by rasi
Tue Mar 28, 2006 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error : Illegal instruction
Replies: 8
Views: 3352

Senthil

In developer guide it says

"The Where property supports standard SQL expressions, except when comparing strings."

There should be something else which makes it not to work....
by rasi
Mon Mar 27, 2006 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata stored Procedure error
Replies: 1
Views: 1493

Hi

Stored Procedue stage only support Oracle, DB2 and Sybase as you can these in the drop down box. I never tried calling stored procedure thro datastage, I think you have to construct user defined sql to call stored procedure
by rasi
Mon Mar 27, 2006 11:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple source files single ETL
Replies: 33
Views: 10995

Anu

Once you made your Job as Muliti Instance job then if you go and open your Sequencer job you will have Invocation Id tab under Job name. This is the place where you need to type in the invocation id for each instance. hope this helps
by rasi
Mon Mar 27, 2006 11:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error : Illegal instruction
Replies: 8
Views: 3352

Senthil
using "col1>col2-1".
What is your where clause in filter stage. What is the datatype for Col1 and Col2?
by rasi
Mon Mar 27, 2006 11:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple source files single ETL
Replies: 33
Views: 10995

Anu Click the Job Properties and inside that tick the Allow Multiple Instance box. It's that easy to make a job multiple instance. While running it you need to give InvocationID which identifies each instance ran for that job. For Custom routine you can start looking at the Routines which comes with...
by rasi
Mon Mar 27, 2006 10:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing Indexes
Replies: 6
Views: 2948

Hi

There is no direct way to disable and enable index from datastage. As Kenneth said you can have SQL script which does all these things and can be called from datastage.

Check the Oracle Reference Guide for syntax to disable and enable index
by rasi
Mon Mar 27, 2006 9:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error : Illegal instruction
Replies: 8
Views: 3352

Senthil

These files are created under Datastage Project folder in your OS.
(ie ..//Ascential/DataStage/Projects/ProjectName/RT_SC367/OshExecuter.sh )

Thanks