Search found 53125 matches
- Sun May 09, 2004 4:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: TO Check If a DOS filepath exists using Basic.
- Replies: 14
- Views: 4790
- Sun May 09, 2004 4:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: filename - Filename_yyyymmdd.txt
- Replies: 2
- Views: 1232
You can use a job parameter set in a controlling job. The controlling job (or job sequence) would generate the file name, perhaps using a Routine, then set a parameter containing that file name that the real job could use. If you were writing your own controlling job, it would look something like th...
- Sun May 09, 2004 4:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pivot Stage
- Replies: 2
- Views: 851
This is splendidly explained in the manual for the Pivot stage (pivot.pdf).
You can also find it by searching this Forum, for example here.
You can also find it by searching this Forum, for example here.
- Fri May 07, 2004 9:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ActiveX DLL question
- Replies: 2
- Views: 933
DataStage jobs run as background processes on the server machine, which may or may not be the same machine as the one on which your Director client is running. Background processes do not have any "terminal". Therefore they have nowhere to display forms. I guess you could use Windows commands such a...
- Fri May 07, 2004 9:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sharing Secured Routines between projects
- Replies: 6
- Views: 1807
Another mechanism is "global catalog". Here you use a leading asterisk in the name: CATALOG DSU_BP *SecureRoutine In all projects that have to access this, you no longer choose transform function as the routine type. Instead, you choose "custom UniVerse function". Find CATALOG in the DataStage BASIC...
- Fri May 07, 2004 9:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: What is the field delimiter for Hash files?
- Replies: 10
- Views: 3145
None of the previous posts is completely correct, as the answer depends on whether you're referring to the internal storage model (in which case the best answer is "you don't need to know") or the structure of the record after you've read it (using a READ statement or one of its variants) and also, ...
- Fri May 07, 2004 9:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Concatinating the String with NULL
- Replies: 2
- Views: 1147
Technically what Craig says is correct. If you append, or prepend, something unknown, then the result is necessarily unknown. You need to convert the null to "" or 0, depending on the underlying data type. There are SDK Transforms for doing exactly this. DataStage does, however, let you concatenate ...
- Fri May 07, 2004 9:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Result Columns in a Stored Procedure
- Replies: 4
- Views: 1448
- Fri May 07, 2004 6:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Result Columns in a Stored Procedure
- Replies: 4
- Views: 1448
- Fri May 07, 2004 3:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Running DataStage from a remote site i.e. dial-in
- Replies: 1
- Views: 932
Director doesn't run on UNIX; you'd need to dial in to a Windows machine to do this. Once you're logged in (presumably via RAS), you're just another Windows user; connecting via Director (or any of the other DataStage clients) to the DataStage server is as usual. Similarly, if you're set up to dial ...
- Thu May 06, 2004 10:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Parameter's that include other Job Parameters
- Replies: 3
- Views: 2319
- Thu May 06, 2004 12:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Email Notification
- Replies: 4
- Views: 1409
- Wed May 05, 2004 4:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date help
- Replies: 6
- Views: 1282
DATE.TAG has been around for a long time. It simply performs Oconv(%Arg1%, "D-YMD[4,2,2]"), so should not have any side effects. So this is very odd behaviour indeed. Is it reproducible? If so take a look at the generated Transformer stage code (in the RT_BPnnn directory, where nnn is your job numbe...
- Wed May 05, 2004 3:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Basic Question about Basic!
- Replies: 2
- Views: 962
Welcome aboard! :D The := is one of three "special assignment operators". The others are += and -=, for details see the DataStage BASIC manual, page 2-21 (or just search for := once you have the manual open). X := " LTD" is functionally equivalent to X = X : " LTD" , but executes more efficiently. A...
- Tue May 04, 2004 4:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Finding Tables Accessed in Jobs
- Replies: 7
- Views: 1668