Search found 42189 matches

by chulett
Tue Jan 29, 2008 9:44 pm
Forum: General
Topic: DS 7.5R2 Server - Version Control Replication
Replies: 2
Views: 981

Yes, Version Control easily supports multiple VC repositories / projects in your version. And it seems to me you'd definitely want to set up a separate one for this 'test' environment.
by chulett
Tue Jan 29, 2008 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Determine DayofWeek in Job Sequencer
Replies: 4
Views: 1849

OConv with the DWA conversion code will get you day of the week spelled out. So a routine that takes a passed in date and returns the following could be used to branch in your Sequence. Something like: Oconv(IConv(YourDate,"D-YMD"), "DWA") You could then check for...
by chulett
Tue Jan 29, 2008 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between a transform and a routine
Replies: 5
Views: 2170

crouse wrote:wouldn't pass my interview.

Dang. :cry:
by chulett
Tue Jan 29, 2008 4:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Imput Read Problem
Replies: 7
Views: 2351

Hold on, what does your job design look like? You should use the External Source stage to replace the Sequential File stage, not use both. :?

Why do you have hash/pound signs in your 'xml subdirectory path'?
by chulett
Tue Jan 29, 2008 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Truncate Command
Replies: 6
Views: 1183

What Ken said. Execute a script to truncate the table via sqlplus in your routine, if you feel the need to use a routine.
by chulett
Tue Jan 29, 2008 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: column swaping
Replies: 8
Views: 1573

Of course. :!:
by chulett
Tue Jan 29, 2008 8:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: column swaping
Replies: 8
Views: 1573

That's unnecessary complication. The first answer is more appropriate, simply check the lookup status and swap values in each derivation based on the result of that check.
by chulett
Tue Jan 29, 2008 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: bulk loading
Replies: 5
Views: 1278

And in your case, the "previous day's records" = everything in the table? :?
by chulett
Tue Jan 29, 2008 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: bulk loading
Replies: 5
Views: 1278

And in your case, the "previous day's records" = everything in the table? :?
by chulett
Tue Jan 29, 2008 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Input files with multiple record types
Replies: 3
Views: 1385

Read it as one long varchar column, then parse out the first column (with FIELD more than likely) and take it from there based on that value.
by chulett
Tue Jan 29, 2008 7:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal error 40018 :the given CLink is not valid
Replies: 3
Views: 2177

Any chance you had space problems where DataStage is installed and corrupted your project? Perhaps a REINDEX is in order.
by chulett
Tue Jan 29, 2008 1:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What is the difference between Datastage V7.1 & V7.5
Replies: 3
Views: 1452

I posted the contents of the "What's new in Version 7.5" document in the FAQ forum. That's as close as you're going to get.
by chulett
Tue Jan 29, 2008 1:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle sequence issue
Replies: 21
Views: 5761

Actually, it's not impossible. For an Oracle sequence, you simply use a query of "select X.NEXTVAL from DUAL" with a single non-key column to hold the result. No key is supplied in the reference link and it returns a new key for every record through the job. I've done this and it works 'fine' althou...