Search found 324 matches

by sachin1
Mon Feb 25, 2008 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: configuring oracle database in datastage
Replies: 2
Views: 1196

Re: configuring oracle database in datastage

hello dear please post your query in parallel forum.
by sachin1
Fri Feb 15, 2008 10:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job sequence aborting after 50 warnings
Replies: 3
Views: 1356

To avoid warning limits and to run your job, limits needs to be modified.

Director---->Tools--->Option---->Limits tab.
by sachin1
Tue Feb 12, 2008 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data is not in order in Hash file.
Replies: 10
Views: 2684

A hash file can simply be described as a file that distributes data throughout a pre-sized and space allocated file.
by sachin1
Sat Feb 09, 2008 6:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Windows batch job problem
Replies: 13
Views: 3403

considering path MOVE and COPY works and REPLACE does not, i have faced the same problem and then i used MOVE for my urgent development.
by sachin1
Thu Feb 07, 2008 10:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting warning limits in a before-job routine?
Replies: 9
Views: 3383

hello chulett i want to convey that you can't add your custom code in the code already generated by job sequencer, as the Job Control of sequencer is not editable as compared to other simple datastage jobs.
by sachin1
Thu Feb 07, 2008 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I have a job that checks to see if a job is running?
Replies: 9
Views: 4674

hope locking and deleting of table as mentioned by replies helps you, as you want to create a job which will track your job sequence, you can code in job control following to track job sequencer. Status = DSGetJobInfo( RunJobName, DSJ.JOBINTERIMSTATUS) *Call DSLogFatal("JobControl") Status...
by sachin1
Thu Feb 07, 2008 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting warning limits in a before-job routine?
Replies: 9
Views: 3383

hello, i hope your job sequencer calls job of type A and B.

but i doubt you can custom code job control of job sequencer with basic code,

you cant edit the code of job control that is developed automatically.
by sachin1
Thu Feb 07, 2008 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: want to the job sequence repeatedly until particular time
Replies: 6
Views: 2278

hello dear, 1.Imagine your 4 jobs take 2 secs to run ok. 2.start your job with some time and imagine you want be in loop for 2 hours. you have to use UserVariables_Activity,startloop,Job_Activity and EndLoop. job design like below UserVariables_Activity--->startloop------->Job_Activity------>EndLoop...
by sachin1
Tue Feb 05, 2008 9:40 am
Forum: General
Topic: validation on records
Replies: 11
Views: 3490

vice versa works dear !!
by sachin1
Tue Feb 05, 2008 5:00 am
Forum: General
Topic: validation on records
Replies: 11
Views: 3490

sorry for wrong interpretation, i have taken an input file emp.txt with below records 1,sac,10 2,mark,10 3,pras,20 4,sush,20 6,ritu,30 7,ash,40 8,ddd,50 i have dept table with below records SQL> select deptno from dept; DEPTNO ---------- 10 20 30 40 SQL> see that your input record is sorted for look...
by sachin1
Mon Feb 04, 2008 7:29 am
Forum: General
Topic: validation on records
Replies: 11
Views: 3490

bellow job design can help. OCI stage(1)---->transformer1--->aggregator-------> transformer2---->transformer3--->OCI stage(2). i aggregation stage you find out duplication like select deptno,count(deptno) from emp group by deptno. then in transformer 3 apply condition that count > 1 rows should prop...
by sachin1
Thu Jan 31, 2008 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate count
Replies: 12
Views: 4131

yes very true the logic works perfectly as mentioned by thiruiitd .
by sachin1
Tue Jan 29, 2008 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to split into n number of records from one record
Replies: 7
Views: 2708

i agree with gateleys, you need to create a routine which will take necessary input parameter and file name, file needs to be in append mode(opened and closed for each record processing). Using stage variable you create a long string with a new line character as separator for each record, then try t...
by sachin1
Tue Jan 29, 2008 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting in to Multiple worksheets
Replies: 7
Views: 2516

i think it should create new .csv file for each of file creation link or transformation.
by sachin1
Tue Jan 29, 2008 10:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to add trailer records?
Replies: 6
Views: 1528

Re: How to add trailer records?

how are you processing your tables, do you have 3 jobs for 3 tables, or just one job for 3 tables, because i think you will be using routine only if your jobs runs successfully and in "After job subroutine", if your extractions is fine you add a record to end of processed file right ?