Search found 358 matches

by loveojha2
Tue Aug 08, 2006 5:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batch SID
Replies: 16
Views: 4293

As already suggested job parameter is the way to go.

Add a routine Activity to the Master Sequence calling the server jobs. Pass the return value of the routine to all the 10 jobs as parameter.
by loveojha2
Tue Aug 08, 2006 2:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Field function to get final delimeter of a string
Replies: 16
Views: 8127

Use DCount to get the number of occurences of double spaces.
Use Field to get the last field (which is no returned from DCount).

You don't need to write a function for that.
by loveojha2
Mon Aug 07, 2006 10:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Line No in Job no
Replies: 8
Views: 2775

Open the RT_BP271 folder and check the files out there, you will see the code of the job there. The line number can be traced out there.
by loveojha2
Mon Aug 07, 2006 10:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error using Universe
Replies: 4
Views: 2696

Go to Edit DDL tab and click the Create DDL button to generate the DDL statement.
by loveojha2
Mon Aug 07, 2006 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Input string too long error while compliing job
Replies: 6
Views: 3451

I have no other option than using it
I guess you ar hitting the limit allowed for the max number of characters permissible.
Can't you just replace it with a function?
by loveojha2
Mon Aug 07, 2006 3:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Database DeadLock and still cannot open the txt file after..
Replies: 8
Views: 1651

1.May I know how to stop the job if the job seems not completely stopped? In the above case,even though I stoped the DS services,the job cannot be stopped completely.This morning ,even I did rename the job and recompiled it,but it didn't stopped completely. If you have successfully compiled it, you...
by loveojha2
Mon Aug 07, 2006 2:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batch SID
Replies: 16
Views: 4293

hi

why no reply

What is batch SID ? and what is the use of creating it?

Ray.wurload r u there


mohan
You got a response from ArndW in less 2 hours time, what else you want?
Hey Ray, sombody is calling you. :wink:
by loveojha2
Mon Aug 07, 2006 2:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batch SID
Replies: 16
Views: 4293

Can anyone tell me how can we generate batch SID for the datastage jobs. If there is any routine then plz send it across it to me. I guess you are talking in terms of peoplesoft related product EPM!!!! It is nonthing but the sequence number genarated per run, i.e., for one run of a job one particul...
by loveojha2
Sun Aug 06, 2006 10:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Database DeadLock and still cannot open the txt file after..
Replies: 8
Views: 1651

Possible options available: 1. Stop the Job from director (if it is still running). 2. If it is not running then possibly it has locked the resources and aborted. Run DS.TOOLS from your Administrator and release the locks held by process of the job. (This should release the lock on the Seqential fil...
by loveojha2
Sun Aug 06, 2006 9:31 pm
Forum: General
Topic: non-Ascential ODBC drivers give strange results
Replies: 2
Views: 3370

Which version of Data Stage?
Was it 7.5.1a?
We also had simliar problem, for which an ODBC related patch was supplied by the Ascential.
by loveojha2
Fri Aug 04, 2006 3:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control Aborting with "Job is not a runnable state&
Replies: 4
Views: 5185

instead

Code: Select all

ErrCode = DSRunJob(hJob3, DSJ.RUNNORMAL)
Try with

Code: Select all

ErrCode = DSRunJob(hJob3, DSJ.RUNRESET)
by loveojha2
Thu Aug 03, 2006 1:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel loading from ASCII Files
Replies: 2
Views: 1164

Oops I misread your post, the files are all different!!! You can create three separate links from the Sequential File Stage (or three separate stages) reading from the 3 different files and can load into the target (assuming its a table) (If its a sequential file then you can not load the data in pa...
by loveojha2
Thu Aug 03, 2006 1:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: .odbc.ini
Replies: 6
Views: 4189

On windows machine you can find this file within the C:\winnt or C:\windows folder (depending on the OS).
But you won't be using this file if it is a client machine.
by loveojha2
Thu Aug 03, 2006 1:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parallel loading from ASCII Files
Replies: 2
Views: 1164

im thinking of the solution is using on multiple instances. Is it this is only approach that i can develop? Yes this is the only external parallellism that you can introduce. If you want it within job itself, you can think of having it through the different paths for the 3 countries or explicit use...
by loveojha2
Thu Aug 03, 2006 1:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting a Sequential File
Replies: 3
Views: 1855

Split the Source into 2 links one for update and one for Insert and put each of them into a sequential file. How do i be able to diff between the records to be inserted and updated. You can do this by including a target table lookup, if lookup passes it should go to the update link else the insert ...