Search found 231 matches

by DS_SUPPORT
Mon Dec 21, 2009 4:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Routine with sql statement.
Replies: 5
Views: 1866

Search the forum for the Keyword "BCI".

I will always prefer to execute the sql statements, by using After SQL tab in the target stage.

OR you can write a job and call it through the after job subroutine, which will be simpler than calling sql statements from the routine.
by DS_SUPPORT
Mon Dec 14, 2009 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Having Errors When Connecting to MSSQL DB
Replies: 2
Views: 2519

Having Errors When Connecting to MSSQL DB

We have a simple job with some 2 hashed File lookups. Our Job design is LKP1 LKP2 | | V V DRS --- IPC--TRANSFORMER --- IPC--DRS We are using DRS stage, because customers can configure it to run on any database. When testing this job, it is running perfectly when oracle is used as Source and target. ...
by DS_SUPPORT
Tue Nov 24, 2009 11:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Used in all the ETL Jobs
Replies: 9
Views: 3985

Your Search String "TableNm" is used some where in that job/Stage. Might be your job might be using Generated SQL, but the search string can be there in your User Defined SQL.
by DS_SUPPORT
Thu Nov 19, 2009 3:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query related to Sequence Trigger
Replies: 6
Views: 2056

Eventually, the status of the Sequence Job should be Finished With Warnings, but in some cases , i have observed even though one job finishes with warnings, the Sequence job staus is Finished. For handling this, Enable "Automatically Handle Activities That Fail" in the job properties of th...
by DS_SUPPORT
Thu Nov 19, 2009 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: single row spliting into Multiple rows
Replies: 5
Views: 2114

Did you tried using Pivot Stage?
by DS_SUPPORT
Thu Nov 19, 2009 1:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to solve the "Could not load dsstpora.dll" pro
Replies: 2
Views: 2121

Search the forum, with the keyword dsstpora.dll. It has been already discussed here.
by DS_SUPPORT
Thu Nov 19, 2009 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query related to Sequence Trigger
Replies: 6
Views: 2056

No, as the trigger is set to OK, the second job wont be called if first job finished with warnings.
by DS_SUPPORT
Thu Nov 19, 2009 12:52 am
Forum: General
Topic: send an SMS using DS
Replies: 7
Views: 2976

Please refer to this thread
by DS_SUPPORT
Wed Nov 18, 2009 4:21 am
Forum: General
Topic: Passing parameters or values across server jobs
Replies: 4
Views: 1962

How Job B is called from Job A, if you could say that clearly, you will get exact answer.
by DS_SUPPORT
Tue Nov 17, 2009 12:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Computed blink of 0x830 does not match expected blink
Replies: 7
Views: 10660

I hope the log file is corrupted, you can clear the log file , by executing the command, from the administrator command prompt.

Code: Select all

CLEAR.FILE RT_LOG10197
This will clear the Auto Purge settings of that job, so please set it again.
by DS_SUPPORT
Mon Nov 16, 2009 2:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Usage Analysis
Replies: 6
Views: 3569

Wrap all the lines together, (remove all enter characters) and make it as a single line and execute it.

Alternatively, you can can use this code in universe stage and get the desired output. Search the forum or read help, on how to use the universe stage
by DS_SUPPORT
Mon Nov 16, 2009 2:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Usage Analysis
Replies: 6
Views: 3569

Welcome to DSXchange... Execute the following code in Administrator Command prompt, and you will get the desired results. select DS_JOBOBJECTS.OLETYPE AS STAGE_TYPE, DS_JOBS.NAME AS JOB_NAME FMT '35L', DS_JOBOBJECTS.NAME AS LINK_NAME FMT '35L' from DS_JOBOBJECTS, DS_JOBS where DS_JOBOBJECTS.OLETYPE ...
by DS_SUPPORT
Thu Nov 12, 2009 1:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating a DS sequence job
Replies: 12
Views: 7172

I have generated the Sequence jobs, by writing a DS routine. My input will be list of jobs that needs to be there in the Sequence. First, i will loop through all of them, and get the required job parameters. and rest of the stuff in the Sequence job will be mostly hardcoded, except the Stage Positio...
by DS_SUPPORT
Thu Nov 05, 2009 1:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: search variable
Replies: 7
Views: 3894

Kim Duke has posted this query very long back 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 SEARCH STRING',1) > 0 then 'FOUND' else ''" AS FOUND FMT '5L' FROM DS_JOBS, DS_JOBOB...
by DS_SUPPORT
Wed Nov 04, 2009 12:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRITICAL ERROR
Replies: 4
Views: 2214

From where we can see the DSD.RUN code?