Search found 15603 matches

by ArndW
Fri May 27, 2005 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Queries on sequential file stages
Replies: 7
Views: 2384

Re: Queries on sequential file stages

1)With the option checked as Fixed width columns in Input Tab Which length is given preference? Either Display or length column in columns tab? The Display is used for determining the column width 2)What is the Load option in format tab meant for? The Load is used to load in a metadata column descr...
by ArndW
Fri May 27, 2005 5:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetNewestLogId
Replies: 7
Views: 1350

No problem - I wouldn't have found it unless I actually used it, either.
by ArndW
Fri May 27, 2005 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetNewestLogId
Replies: 7
Views: 1350

Palmeal - the DSGetJobInfo also has a DSJ.JOBLASTTIMESTAMP for the finish time of the last run.
by ArndW
Fri May 27, 2005 2:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetNewestLogId
Replies: 7
Views: 1350

Palmeal,

Isn't using the DSGetJobInfo function with the mnemonic key DSJ.JOBSTARTTIMESTAMP easier and more direct than looking into the log files?
by ArndW
Fri May 27, 2005 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I want toconvert Nondelimited date to DS internal Format
Replies: 10
Views: 2599

december786, if you want a 1-liner you could use IF(ICONV(InLink.TheDate, "DYMD")=InLink.TheDate)THEN 'Bad Date' ELSE 'Good Date' This is because an unsuccessful ICONV/OCONV returns the original string. It is much better to use a short routine and get the value of STATUS() ...
by ArndW
Fri May 27, 2005 1:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transaction Size and Array Size
Replies: 3
Views: 1470

The Transaction Size is the number of rows between database commits. If this is 0 then a commit is done only at the end of a run; this is the quickest choice. Unfortunately, the downside is that with large numbers of records you can or will overflow the rollback space within the database. The size o...
by ArndW
Thu May 26, 2005 12:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exporting DS project via DSJOB
Replies: 12
Views: 5103

Ray - you mean client-side, right?
by ArndW
Thu May 26, 2005 12:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit Frequency
Replies: 8
Views: 3244

Ummm.. I was wrong, we are using it; and it doesn't :) (have a commit row interval)
by ArndW
Thu May 26, 2005 11:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I want toconvert Nondelimited date to DS internal Format
Replies: 10
Views: 2599

Well, you need to see what the routine DateGenericIsDate() does; I don't know what sort of date it expects as an input, but the ICONV() function I gave you returns an integer internal date - which is what you asked for.
by ArndW
Thu May 26, 2005 10:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I want toconvert Nondelimited date to DS internal Format
Replies: 10
Views: 2599

You can perform a ICONV(In.DateString[1,4]:'-':In.DateString[5,2]:'-':In.DateString[7,2],'D4-ymd') to do this.
by ArndW
Thu May 26, 2005 10:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Notification Activity
Replies: 8
Views: 1315

Pandu, (a) When you test it with 2 different files and both jobs have errors you get the data subsets written correctly to both files? (b) You checked in your master sequence that all calls are sequential and not concurrent (I still am sure that this is where you are getting your problem)? (c) You a...
by ArndW
Thu May 26, 2005 8:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exporting DS project via DSJOB
Replies: 12
Views: 5103

wiant,

unfortunately you cannot export a project from the "dsjob" command on the server; in fact the export cannot be run on the server but only on the client. You can, from your client machine, issue the dsexport.exe command.
by ArndW
Thu May 26, 2005 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Notification Activity
Replies: 8
Views: 1315

If you change the name of the 2nd output file and run your test with both writing, does that work as expected? I should also have been more explicit in my first response, on the first call from the sequence, in the "triggers" tag do you have the output marked as "conditional"?
by ArndW
Thu May 26, 2005 8:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Commit Frequency
Replies: 8
Views: 3244

I'll be darned if I can find that property for the Oracle OCI stage in Px, though.
by ArndW
Thu May 26, 2005 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Notification Activity
Replies: 8
Views: 1315

Pandu80, the "overwrite" and the "append" switches work for sequential files, so my first assumption would be that in your sequence you are not ensuring that Job 2 starts after Job 1 finishes; i.e. they are running at the same time. This would give a concurrency issue where your file contents are th...