Search found 131 matches

by GJ_Stage
Thu Mar 31, 2011 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OracleEnterpriseStage: ORA-00903: invalid table name
Replies: 8
Views: 6073

I have tested the same senario , created table called SAPSLP./GKV/CM00_PROCU with one field REG_NO. It is working fine using this command in Oracle Stage : select REG_NO from "SAPSLP./GKV/CM00_PROCU" and one more created table /GKV/CM00_PROCU assume SAPSLP is schema name than use below com...
by GJ_Stage
Wed Mar 30, 2011 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parametersing Table definitions?
Replies: 3
Views: 2634

Yes. It is possible using schema file (this is for reading seq file to writing into table). Only one DS job is enough for that you need to pass schema file name and tablename and anyother parameters.
by GJ_Stage
Wed Mar 30, 2011 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Resolve these warnings
Replies: 2
Views: 2183

can you able to view data in seq file .?
by GJ_Stage
Wed Mar 30, 2011 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-03113: end-of-file on communication channel
Replies: 12
Views: 14685

Make sure Database (Oracle) should be up and running while DS jobs are running.
by GJ_Stage
Wed Mar 30, 2011 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: received signal SIGABRT error
Replies: 3
Views: 3047

Transformer stage you might be using wrong calculation or tryning to stror different datatype value in target.
by GJ_Stage
Tue Mar 29, 2011 7:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tracking logins to Datastage
Replies: 5
Views: 5090

Using below command you can get machine name who is loggin in datastage:

netstat -a | grep servername.dsrpc

Sample :

netstat -a | grep UATDS.dsrpc
by GJ_Stage
Tue Mar 29, 2011 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: my job is taking 45 minits to load the data
Replies: 14
Views: 9244

Tony , You are correct. There is no other reason to make it slow.
by GJ_Stage
Tue Mar 29, 2011 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: my job is taking 45 minits to load the data
Replies: 14
Views: 9244

Might be below reason:
1. Check TABLE is getting lock while loading in case.
2. Please provide what kind of operation performing in Transformer stage.
by GJ_Stage
Tue Mar 29, 2011 4:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: my job is taking 45 minits to load the data
Replies: 14
Views: 9244

Do pre-Sorting in oracle itself before creating dataset and then try.
by GJ_Stage
Mon Mar 28, 2011 9:50 am
Forum: General
Topic: Run all the jobs concurrently
Replies: 10
Views: 3696

Based on any condition you can do it. For example this 7 jobs is reading file and writing into table means you can put condition if the table is empty you can continue otherwise come out.
by GJ_Stage
Mon Mar 28, 2011 6:01 am
Forum: General
Topic: Run all the jobs concurrently
Replies: 10
Views: 3696

You can put all the jobs in one Parallel job if job parameters are common and the run this job. So all the jobs will run concurrently.
by GJ_Stage
Wed Mar 23, 2011 10:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: refresh of the code from Production into the Project
Replies: 7
Views: 2745

There will not be any problem. Because Jobs are already exported from Production and now importing to DEV. But jobs are running in Production.
by GJ_Stage
Wed Mar 23, 2011 9:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Last Successfull Job run Date and time
Replies: 2
Views: 2203

We can check from Director for the particular job.
by GJ_Stage
Tue Mar 22, 2011 2:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert string to date
Replies: 4
Views: 2982

Try this :

StringToDate(DSLink100.PalanedDeliveryDate,'%yyyy-%mm-%dd')

Please provide what is error message are you getting?
by GJ_Stage
Mon Mar 21, 2011 10:42 am
Forum: General
Topic: Passing Date Param from Job to ODBC User-Defined SQL Delete
Replies: 5
Views: 3381

Try like , Pass date param as string and then chagne your query like this. to_date(#Start_Date#,'YYYYMMDD')