Search found 230 matches

by sb_akarmarkar
Thu May 25, 2006 3:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stop creation of files if the constraint does not satisfy.
Replies: 4
Views: 1703

Hi, Four output links from transformer to four output files and four condition Then three you have fourth you want if three of any fails or all three fails....If i understand correctly then following will help Order the links Just use..... NOT(link1.condition1 and link2.condition2 and link3.conditio...
by sb_akarmarkar
Thu May 25, 2006 3:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting records based on User Entered Date
Replies: 12
Views: 3457

Sorry to mention about use @OUTROWNUM=1 in constarints for delete link
yes ...Just type user-Defined SQL
Make Time_ID as key in column tab ....
It will take "?"
by sb_akarmarkar
Thu May 25, 2006 3:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Which area has more jobs?
Replies: 3
Views: 1363

Query placed at wrong forum Index
by sb_akarmarkar
Thu May 25, 2006 3:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format
Replies: 2
Views: 1097

Hi,

Try following
Var1=INT(LEFT("YYMM",2)) ----- this will give the year

if Var1>79............................................

Thanks,
Anupam
by sb_akarmarkar
Thu May 25, 2006 3:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting records based on User Entered Date
Replies: 12
Views: 3457

Hi, No need of writing delete into before jobs tab... Just take two output link from transformer to target stage write user defined delete statement in one and insert into another, Order the link 1st delete followed by insert... Pass value from tansformer to delete statement as column value delete s...
by sb_akarmarkar
Fri May 19, 2006 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to control the load sequence of transformer outputs
Replies: 7
Views: 2184

We can do it in one job .... like

SourceODBC ----Input Data---> OD1--Dummy Input -->SourceODBC--Input Data-->OD2


Dummy Input = select 0 from OD1

But ......

My suggestion to go with two jobs

Thanks,
Anupam
by sb_akarmarkar
Fri May 19, 2006 6:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number Formatting
Replies: 13
Views: 4478

Use field and Concatenation

Thanks,
Anupam
by sb_akarmarkar
Thu May 04, 2006 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Shared containers in parallel -- multiple instances?
Replies: 7
Views: 1902

To be more specific: I have an update job and an insert job that each read from the same sequential file, use the same lookup hash-files, and update or insert into the same Oracle table. The only real difference is at the beginning, the insert job passes only new records to be processed while the u...
by sb_akarmarkar
Wed May 03, 2006 11:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time stamp
Replies: 5
Views: 4003

As i understand from ...Hmmm..
Use substrings or Field to extract Data from timestamp....Use OCONV and ICONV to get year and month... :)

Read Ascential PDF ..... :arrow:

Thanks,
Anupam
by sb_akarmarkar
Wed May 03, 2006 5:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine to compile a job
Replies: 12
Views: 5553

Hi,

Modify UtlityRunJob( ) routine use DSGetJobInfo to get the status of job if aborted then use DSJ.RUNRESET in DSRunJob else DSJ.RUNNORMAL.....


Thanks,
Anupam
by sb_akarmarkar
Wed May 03, 2006 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file warning message
Replies: 5
Views: 2307

Hmmm...

There is limit to display column data in view data... If your data is more than that limit it will display error data will be truncated... even if increase display length...

Thanks,
Anupam
by sb_akarmarkar
Wed May 03, 2006 5:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe File
Replies: 10
Views: 3916

Using hash file you can view some of metadata but no all...In hash file account name is nothing but project name.

Thanks,
Anupam
by sb_akarmarkar
Wed May 03, 2006 1:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00942: table or view does not exist
Replies: 10
Views: 4903

Oracle table name are case sensitive if you have created table with lower case and looking with upcase then it will display table does not exists.. Have you check option case sensitive in datastage or created table name....


Thanks,
Anupam
by sb_akarmarkar
Wed May 03, 2006 12:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS rollback and triggers
Replies: 4
Views: 1425

You can also try with Database link between db1 and db2
Try the query with Begin ... End.

I hope that will help you but i am not sure.

Thanks,
Anupam
by sb_akarmarkar
Tue May 02, 2006 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run job based upon date found in target
Replies: 10
Views: 2572

I think better to go with 2 jobs as you dont want run main job or else you can go like : In stage variable : VarStage : If @INROWNUM=1 AND headerline=processdate THEN 1 ELSE 0 Unixfile----- Constraint :VarSatage=0 and @INROWNUM<>1 -----> Target (to process rest of row if headerline not found in proc...