Search found 116 matches

by prasannakumarkk
Thu Mar 14, 2013 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-00900: invalid SQL statement
Replies: 3
Views: 5463

Did you try executing this in SQL Plus.
One thing we can try
Use positional parameter instead of =>
Remove the package constant and hard code it.
by prasannakumarkk
Wed Mar 13, 2013 4:19 am
Forum: General
Topic: Source to Target mapping
Replies: 24
Views: 13677

Ray do you have the data model of Xmeta?
by prasannakumarkk
Tue Mar 12, 2013 11:25 pm
Forum: General
Topic: Renaming a job name in dsx file is not changing the job name
Replies: 1
Views: 1073

It is not advisable to edit a DSX. But this is what could have happened in your case. 1) You have exported the job with executables. After you import just check the status of job in director. Guess it will be in compiled state. If this is the case export the job without executables and rename and tr...
by prasannakumarkk
Tue Mar 12, 2013 11:19 pm
Forum: General
Topic: Don't get warning message for execute command
Replies: 12
Views: 4310

Can you please confrim what is happening in the script that you have posted? ssh -i /aa/oracle/.ssh/rsa_cognos10_dsadmin test pfexec /ee/c10_cubes/script/Capital.sh set vReturnStatus = $status exit $vReturnStatus 1) $status - Will it have the return value or exit value of the previous executed comma...
by prasannakumarkk
Tue Mar 12, 2013 8:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL query extraction from oracle stage
Replies: 5
Views: 2395

I cant clearly show you the picture. One thing you can show as a proof is get the explain plan from toad. It will say Oracle is executing the sub query first and then executing the outer query. The inner query will be using Full Access i guess. Now from DS on each call records are fetched. So in tha...
by prasannakumarkk
Tue Mar 12, 2013 8:23 am
Forum: General
Topic: looping jobs
Replies: 13
Views: 5410

Only few days back this was discussed. Guess the number of files are not more. Write the result of table execution in to a file comma seperated file. Within in the start and end loop acitivity, call the job for each file. Here is a solution provided by Ray & Craig http://www.dsxchange.com/viewto...
by prasannakumarkk
Tue Mar 12, 2013 5:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split one column into multiple columns
Replies: 7
Views: 6523

MTCN will never be char

Write you query as
select col1 from table where not col1 like 'MTCN%'
by prasannakumarkk
Tue Mar 12, 2013 5:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding schema file
Replies: 16
Views: 8431

So there will be always two comma delimiters only. Change the schema as record {final_delim=';', delim=',', quote=none,padchar='#'} ( name: string[max=255]; col1: nullable string[max=255]; col2: nullable string[max=255]; ) In the transformer, based on the business rule map the columns to target
by prasannakumarkk
Tue Mar 12, 2013 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding schema file
Replies: 16
Views: 8431

There are lot of option to get it done. But
Understand how the source team is generating data.
runtime i need to pick 1 key column and any 2 of those 3 columns
If there are values for only one non-key column will they send only one delimiter and to which column we will be mapping this?
by prasannakumarkk
Tue Mar 12, 2013 3:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding schema file
Replies: 16
Views: 8431

Are you mentioning from the source the number of columns is 4 but the columns can have null values. Or not sure on number of columns? Anyway you can try as: If from source they cant provide 4 delimiters, then read the data as single column and split the data in to columns in transformer using field ...
by prasannakumarkk
Tue Mar 12, 2013 3:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split one column into multiple columns
Replies: 7
Views: 6523

If there are no other columns, and the column header is static, hard code the static value in transfomer constraint column as not equal to
by prasannakumarkk
Tue Mar 12, 2013 3:10 am
Forum: General
Topic: Data Validation/Rejection
Replies: 7
Views: 2090

Hi Ray,

Do you have any links that best explains the Data Rules stage
by prasannakumarkk
Tue Mar 12, 2013 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL query extraction from oracle stage
Replies: 5
Views: 2395

Since there is a IN clause in the query, the defined array size may impact this.

Just try this

select * from sample sa join staging st
on sa.id = st.id
where sa.unit='522'
and st.unit='522'
by prasannakumarkk
Mon Mar 11, 2013 10:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL query extraction from oracle stage
Replies: 5
Views: 2395

Can you please post the correct table names? I mean atleast different name and alias what u used
by prasannakumarkk
Mon Mar 11, 2013 4:57 am
Forum: General
Topic: Source to Target mapping
Replies: 24
Views: 13677

Automating with universe repository with the exploration i did, was not a reusable solution since the table names are not unique. And in the higher version of DS you may have it in different database. If you want to automate this, you can very well export the jobs with a command and use DOM parser i...