Search found 231 matches

by DS_SUPPORT
Tue Nov 14, 2006 10:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_LOGxxx Not Found
Replies: 9
Views: 4694

Deepak,

Why cant you import the job again, so that it will clear all the old entries and create new entries.
by DS_SUPPORT
Tue Nov 14, 2006 9:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine for job list in a category
Replies: 2
Views: 910

Why You want to have it in a comma Seperated Values. Any way you have written a routine to list jobs , so further extend your routine. Loop the output and append it to the same variable Some thing like Ans = "" cmd="SELECT NAME FMT '60L' FROM DS_JOBS WHERE NAME NOT LIKE '\\%' SUPPRESS...
by DS_SUPPORT
Mon Nov 13, 2006 5:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log Info
Replies: 6
Views: 3133

All the log files are stored in the project directory as RT_LogXXXX where XXXX is the Job Number. You can get the Job Number from DS_JOBS, but these files cannot be read as normal file. You have to write a utility on your own, to convert those entries to a normal file. Search on this forum , you wil...
by DS_SUPPORT
Mon Nov 13, 2006 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Recompiling aborted job in sequence automatically
Replies: 2
Views: 1621

You are having an option "Reset If required, then run" in the execution Action, Choose that option. It will reset the job.
by DS_SUPPORT
Fri Nov 10, 2006 5:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI has fetched truncated data
Replies: 6
Views: 2096

Do a Search, You can find So many posts for answering this. One possible solution Your Job metada wont be matching with ur oracle table structure.

Try to identify the column which throws this error and increase the size of that column in the job.
by DS_SUPPORT
Thu Oct 19, 2006 9:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Job - Performance Issue
Replies: 15
Views: 8428

I hope the Target lookup Hashed File would have exceeded the Size limit.
by DS_SUPPORT
Wed Oct 11, 2006 5:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDKSequence access from remote location
Replies: 10
Views: 4222

What worked? Were the VOC entries each pointing to SDKSequences in the local project? If so, what change(s) did you make? YES , the Voc pointers were not pointing to the common path. I created two new projects . Placed the SDKSequence File at a common path outside the projects. Created VOc pointers...
by DS_SUPPORT
Tue Oct 10, 2006 9:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Errors
Replies: 12
Views: 4715

Re: Weird Errors

J_Fact_PS_F_CI_BILLING_FAR..DRS_PS_CI_FAR_BIL_LKP: Client Library property required for stage J_Fact_PS_F_CI_BILLING_FAR.DRS_PS_CI_FAR_BIL_LKP I hope in your DRS Stage, you would have used some job parameters and those parameters may not be defined or doesnt conatain any value in the user defined e...
by DS_SUPPORT
Tue Oct 10, 2006 5:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue (DB2/400 to Oracle 9i) Extraction
Replies: 5
Views: 2642

If the above method is not possible, then the thing comes into my mind is 1) Create a Server Job which will read the data from DWTP_CURRENT_STATUS and write it to a Hashed file 2) Create a routine which will read the value from the Hashed File (Look into Routines/SDK for examples) 3) Use the routine...
by DS_SUPPORT
Tue Oct 10, 2006 5:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue (DB2/400 to Oracle 9i) Extraction
Replies: 5
Views: 2642

Is it possible to do something like joinig the tables in the query itself SELECT FIELD1,FIELD2,FIELD3,FIELD4,FIELD5,FIELD5 FROM F0005 WHERE DRUPMJ > (select PRV_LOAD_JULIAN_DT from DWTP_CURRENT_STATUS where condition) AND DRUPMJ <= (select CUR_LOAD_JULIAN_DT from DWTP_CURRENT_STATUS where condition)...
by DS_SUPPORT
Tue Oct 10, 2006 4:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue (DB2/400 to Oracle 9i) Extraction
Replies: 5
Views: 2642

You can assign those values as Job Parameter and use them in ur Source Query.

Create two job parameters PS_START_DT and PS_END_DT and change your quey like

Code: Select all

SELECT FIELD1,FIELD2,FIELD3,FIELD4,FIELD5,FIELD5 FROM F0005 
WHERE DRUPMJ > #PS_START_DT# AND DRUPMJ <= #PS_END_DT#
by DS_SUPPORT
Tue Oct 10, 2006 4:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: .dsx export withou using Client
Replies: 17
Views: 6441

There are some command line utilities like DSExport and DSCmdExport. Search for these words and you can find some posts.

In ADN we are having a batch file which will export all the projects from the server.
by DS_SUPPORT
Mon Oct 09, 2006 1:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table usage analysis
Replies: 4
Views: 2324

I hope Kim Duke's query will help you for finding the table names. SELECT DS_JOBS.NAME AS JOB_NAME, DS_JOBS.CATEGORY, DS_JOBOBJECTS.NAME AS OBJECT_NAME, DS_JOBOBJECTS.OLETYPE, EVAL DS_JOBOBJECTS."if index(upcase(@RECORD),'Your Table Name',1) > 0 then 'FOUND' else ''" AS FOUND FMT '5L' FROM...
by DS_SUPPORT
Sun Oct 08, 2006 11:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Source and Target have DRS stages data is not loading.
Replies: 14
Views: 2950

Hi Reddy Whether You are getting any errors? If not run the job with Array Size 1 and i hope you may get some errors. Still the data is not loaded, then I hope you are having NULL in your data and you are trying to populate that to a Not Nullable Column. Do the Null Handling, Your problem will be so...
by DS_SUPPORT
Fri Oct 06, 2006 5:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding the date conversion
Replies: 5
Views: 3087

Iconv and Oconv can be used for converting dates. You can use something like

Code: Select all

Oconv(Iconv(InputColumn,"D/DMY[2,2,4]"),"D-YMD[4,2,2]") : ' 00:00:00'

Use the Search facility for Iconv & Oconv, You can find N number of posts.

Thanks
DS_SUPPORT