Search found 34 matches

by sankar18
Thu Feb 24, 2005 12:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing a Job Parameter for picking up a dynamic File Name
Replies: 10
Views: 4283

To handle the dynamic filename, have the filename as job parameter like filename and date, job parameter enclosed by hash symbols. Eg.

#PATH#/#DIR#/#FILENAME##DATE#.txt

while running the job the give the value for path, dir, filename, date. so that it will pick the correct file.
by sankar18
Mon Jan 27, 2003 9:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential file data length checking
Replies: 4
Views: 1702

Hi,

As Ray suggest put a constraint in the Transformer stage, If you want 12 digit or less than 12 digit use
Len(Link1.Column3)
by sankar18
Mon Jan 20, 2003 10:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in the execution
Replies: 5
Views: 2200

Hi,

I tried to compile the job, It shows the job is running.
I stopped the all service, then start all the services, Compilation is allowed, stopping and starting of all the service.
T Sankar
by sankar18
Mon Jan 20, 2003 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what should be used to access an XML file
Replies: 5
Views: 2170

Hi,

Thank you Ray,
I will work on it.

thanks & regards,
T Sankar
by sankar18
Mon Jan 20, 2003 3:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in the execution
Replies: 5
Views: 2200

Hi,

Once the job compiled, status shows it is compiled.
will the process running on the server.

Thanks & regards,
T Sankar
by sankar18
Mon Jan 20, 2003 3:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what should be used to access an XML file
Replies: 5
Views: 2170

Hi,

The Version is 5.2. XE
While Installation, any specfiy step to be followed.

thanks & regards,
T Sankar
by sankar18
Mon Jan 20, 2003 1:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what should be used to access an XML file
Replies: 5
Views: 2170

what should be used to access an XML file

Hi,

there is an xml document. I want the document to be used a source file and extract the data and upload it to the database. for xml there is no help available. Is there a way to read the xml document, if any one done the same, send me.

thanks & regards,
T Sankar
by sankar18
Mon Jan 20, 2003 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in the execution
Replies: 5
Views: 2200

Error in the execution

Hi, I executed a Job which has some basic routines, but the job doesn't finished after an hours time. In the director I pressed the stop button, the message came is, the request send to the server. I stopped the DataStage services and restarted the system, It is running. the start button adn reset b...
by sankar18
Tue Jan 14, 2003 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to create a new file using WriteSeq
Replies: 1
Views: 1308

How to create a new file using WriteSeq

Hi,

How create a new file using WriteSeq. or using other statement.
Is there any other approach to create a file in routine.

with regards,
T Sankar
by sankar18
Tue Jan 14, 2003 12:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a file and writing it into another file
Replies: 4
Views: 2143

Hi, Routine was running with out any error. ErrorCode = 0 ;* set this to non-zero to stop the stage/job lPathname="d:ds-exercisemergefilecusttrainee.txt" llPathname="d:ds-exercisemergefilecusttrainee2.txt" OpenSeq lPathname To mailfile else Call DSLogWarn(" Cannot Open "...
by sankar18
Mon Jan 13, 2003 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a file and writing it into another file
Replies: 4
Views: 2143

Hi Ray, No message is logged prior to the abort. The line ReadSeq llPathname to FileVar Else Exit - is to move the cursor to the position where it will append the new record. It is not overwriting the record, It is reading the next line ad not writing in to the output file. at time it showing the er...
by sankar18
Mon Jan 13, 2003 10:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduled Job Never Starts
Replies: 6
Views: 2694

Hi mnevotti,

It is Windows based system.
then you check the task scheduler ( windows 2000 ) is started.
Once the scheduler is set to started. the scheduler in Datastage will run automatically.

with regards,
T Sankar
by sankar18
Mon Jan 13, 2003 5:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a file and writing it into another file
Replies: 4
Views: 2143

Reading a file and writing it into another file

All, A routine is reading a line from a text file and writing it in another file. I placed the routine in the before-job subroutine in job properties. the routine read the first line of the source file and inserted the line in the destination file, later it aborts. It is not reading the next lines o...
by sankar18
Fri Jan 10, 2003 8:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOB Log info recording into tables
Replies: 2
Views: 1939

Hi,

you can do it, In Director, Monitor is there, choose save option the value will be stored, you should run another job, watch the file, from the you take the information, update the information into file.

with regards,
T Sankar



Edited by - sankar18 on 01/10/2003 08:16:26
by sankar18
Fri Jan 10, 2003 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating parameters at the transformer stage
Replies: 6
Views: 2209

Hi, you define parameter in the job properties, with "parammeter name", "Prompt", "Type", "Default Value", "Help" after, you assign the parameter name with "##", #parameter name#, you need the value has to pass on run time, thus the value p...