Search found 53125 matches
- Mon May 15, 2006 1:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to assign output values in a job parameter
- Replies: 2
- Views: 967
It can not be done within the job - you can only set parameter values prior to running the job. Therefore you need to create a job sequence (or job control code, if that's your thing). This can run one job - possibly a server job - to obtain the maximum value and store it somewhere (or load it into ...
- Mon May 15, 2006 1:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: about Datastage Job Backup Automatically
- Replies: 6
- Views: 2763
- Sun May 14, 2006 11:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How could I process all files from a directory?
- Replies: 9
- Views: 1993
- Sun May 14, 2006 11:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Running Parallel jobs on Windows 2003 Server
- Replies: 4
- Views: 1692
Help About in any client. You must have 7.5x2. This is the only version that supports parallel execution. Since you mention 7.5.1, you clearly don't have the correct version for compiling/running parallel jobs on Windows. You can design parallel jobs on Windows at other 7.x releases, but you can no...
- Sun May 14, 2006 11:21 pm
- Forum: Site/Forum
- Topic: What's this to Charter Member
- Replies: 6
- Views: 3423
- Sun May 14, 2006 9:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Fatal Error When insering in to a DB2 table
- Replies: 5
- Views: 1629
... but does this user have the requisite SELECT privilege on the system tables that are used to verify that the table and/or column names used in the INSERT statement are correct? It appears, from reading the error message, that it might be the case that the user lacks these privileges. The error m...
- Sun May 14, 2006 7:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Minimum Number of MIPS required with DSMVS version
- Replies: 3
- Views: 853
There are too many (hardware) variables that would affect such an intepretation. You would be better off compiling the COBOL (DataStage has generated JCL both to compile and to run), and analyzing the number of generated machine instructions using your particular mainframe's tools. Whether you can e...
- Sun May 14, 2006 7:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: timestamp
- Replies: 2
- Views: 964
There are no data types within DataStage server jobs. Therefore, if you have an ISO 8601 timestamp, you can simply take the leftmost 10 characters to yield the date portion: Left(TheTimestamp,10) If you require the DataStage internal format of a date, simply apply an Iconv() function, with seconds a...
- Sun May 14, 2006 7:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Backup and Exporting AT commands
- Replies: 6
- Views: 1274
AT executed alone will show you the queue. You can redirect this to a file.
In a DOS shell:
You could edit this to chop out everything but the times and commands, resulting in a BAT file (if done right).
In a DOS shell:
Code: Select all
AT > scheduled_jobs.txtYou could edit this to chop out everything but the times and commands, resulting in a BAT file (if done right).
- Sun May 14, 2006 2:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Runtime Table Definition Import
- Replies: 1
- Views: 624
- Sun May 14, 2006 2:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How could I process all files from a directory?
- Replies: 9
- Views: 1993
- Sun May 14, 2006 2:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dynamic array manipulation
- Replies: 3
- Views: 930
- Sun May 14, 2006 2:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSR.MetaGeta: Cannot open file DS_METATEMP
- Replies: 3
- Views: 1336
- Sun May 14, 2006 2:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Server installation problem on WINXP SP2
- Replies: 7
- Views: 2530
- Sun May 14, 2006 2:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine static call
- Replies: 7
- Views: 1395
Dynamic can be done, through the "indirect call" mechanism that you can find in the DataStage BASIC manuals (the CALL @name syntax). The default, mainly for the reason you wanted to use it, is static. Further, after the first invocation of the function, which loads it into virtual memory, that memor...