Search found 81 matches

by davidnemirovsky
Wed Nov 03, 2004 8:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using the same Sequence in multiple tables
Replies: 6
Views: 3080

Alternitavely if the jobs for each table are in seperate jobs then you can always store the MAX value in the Global Variable ( Read this post: viewtopic.php?t=86986&highlight=user+global ).
by davidnemirovsky
Wed Nov 03, 2004 8:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Vertical Pivot
Replies: 7
Views: 9669

I would just use a simple SQL statement like the following: select ID, MAX(Fld1) "Fld1", MAX(Fld2) "Fld2" from (select ID, case when Colname = 'Fld1' then New_Value else NULL end "Fld1", case when Colname = 'Fld2' then New_Value else NULL end "Fld2" from your_...
by davidnemirovsky
Wed Nov 03, 2004 6:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading in strings with quotes from a csv file
Replies: 12
Views: 12003

GIGO = "Garbage In, Garbage Out" The best option is of course to change the source data. But it looks like you won't be getting a fix in the soruce system anytime soon. It really depends on how often you will be getting data with the double quotes character inside the actual field. A nice ...
by davidnemirovsky
Mon Nov 01, 2004 12:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence jobs and check points
Replies: 9
Views: 3035

Thanks Ray.

Thought so. I have been importing some jobs of mine from 7.1 into 7.0 and it kept complaining about "Unknown property name: 'Checkpoint'". That sort of gave it away to me. But it's good to be sure.
by davidnemirovsky
Sun Oct 31, 2004 11:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence jobs and check points
Replies: 9
Views: 3035

Sequence jobs and check points

Does anyone know if Sequence jobs in Datastage 7.0 support check points for restarts? Or is this only available in versions 7.1+ ?
by davidnemirovsky
Sun Oct 31, 2004 6:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Illegal date/time value
Replies: 1
Views: 951

Perhaps try using the DB2 native format: YYYY-MM-DD-HH.MI.SS.FFFFFF

Would look something like:
OCONV(ICONV(linkname.DATE1,"DMDY"),"D-YMD[4,4,2]") : "-00.00.00.000000"