Search found 324 matches

by sachin1
Wed Aug 19, 2009 2:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Aborted after 1 errors logged
Replies: 5
Views: 2724

Re: Job Aborted after 1 errors logged

please can you give more information from director log for further analysis of your problem.
by sachin1
Wed Jun 17, 2009 1:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Iconv and Oconv Date Conversion
Replies: 5
Views: 41194

Re: Iconv and Oconv Date Conversion

Oconv(Iconv("06/17/2009" ,"D MDY[2,2,4]"),"D/YMD[4,2,2]") gives the output 2009/06/17.
by sachin1
Wed May 20, 2009 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Order of rows in hashed file
Replies: 3
Views: 2399

Re: Order of rows in hashed file

i think you know that data in hash file is key to data mapping, so i think their can be no way to preserve order.
by sachin1
Tue May 05, 2009 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Environment variables
Replies: 2
Views: 1626

Re: Environment variables

sorry dear but please post the message in parallel section.
by sachin1
Wed Apr 22, 2009 12:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom / timeout waiting for mutex error
Replies: 7
Views: 4975

Re: Phatom error

please provide us with more details on error messages you receive.
by sachin1
Wed Apr 01, 2009 5:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Arithmetic Overflow on Sort Stage
Replies: 1
Views: 1071

Re: Arithmetic Overflow on Sort Stage

Please can you paste an error message you get in Director and what is your data in input for further analaysis.
by sachin1
Tue Mar 17, 2009 1:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: View more log in Director
Replies: 1
Views: 1108

View more log in Director

i have a job which creates more information/log, i am just able to see last 100 entries in Director, i want to know where i can do any settings so that i am able to see all log/information for particular job. And please may i know whether i can directly open any RTlognn file in notepad to view job i...
by sachin1
Fri Mar 13, 2009 12:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Startloop and Endloop activity.
Replies: 5
Views: 2770

i think you need to read a file and in transformation you can do processing.
by sachin1
Thu Mar 05, 2009 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: While loop in Datastage
Replies: 17
Views: 16636

when you do testing of any routine( transform) you can see output in Test output.

after running your code.
by sachin1
Thu Mar 05, 2009 5:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: While loop in Datastage
Replies: 17
Views: 16636

Re: While loop in Datastage

please paste your code for while loop for us to check, below syntax works fine with 7.5.1a version.

loop while i < 8 do
print i
i=i+1
repeat
by sachin1
Tue Feb 24, 2009 1:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset a Job from a TRANSFORMER
Replies: 4
Views: 2422

As said earlier by Andrw and Ray, you can use a before job subroutine and code
ErrCode = DSRunJob(JobHandle , RunMode)
DSJ.RUNRESET Job is to be reset.

Reading help topics on DSRunJob can give you more idea.
by sachin1
Thu Feb 19, 2009 1:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage job export and Import
Replies: 1
Views: 1195

Re: Datastage job export and Import

please search for the forum, you will have some uitility called dsexport
by sachin1
Fri Feb 13, 2009 2:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle SCD-1 and SCD-2 ?
Replies: 2
Views: 1997

Re: How to handle SCD-1 and SCD-2 ?

creating a trigger will help but depending upon your transactions for insert,upate and delete for number of rows their will be performance issue which you have to check out with your DBA.
by sachin1
Mon Feb 09, 2009 7:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tracking the size or no. of rows in a seq file
Replies: 7
Views: 3355

Re: Tracking the size or no. of rows in a seq file

Let your job write entire file even if it exceeds size, in after job subroutine execute one batch script or shell script.

this script will telnet the remote server check for the size of file and then use the utility dssmtpmail.exe to send mail ( check for setting with SMTP server).