Search found 53125 matches

by ray.wurlod
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 ...
by ray.wurlod
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

Quite a few sites of which I am aware use dscmdexport from a BAT file to take an export of their projects. This can be automated through the AT scheduler.
by ray.wurlod
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

That's a strange response in the server forum! :?
by ray.wurlod
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...
by ray.wurlod
Sun May 14, 2006 11:21 pm
Forum: Site/Forum
Topic: What's this to Charter Member
Replies: 6
Views: 3423

This site has an unusually diligent webmaster (Walter Hardeman), who doesn't get nearly as much praise as he deserves.
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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:

Code: Select all

AT > scheduled_jobs.txt

You could edit this to chop out everything but the times and commands, resulting in a BAT file (if done right).
by ray.wurlod
Sun May 14, 2006 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Runtime Table Definition Import
Replies: 1
Views: 624

Welcome aboard. :D

The answer is no to both questions.

One *could* hack the Repository but, ultimately, this would be self-defeating; the Repository structure is replaced completely in the next ("Hawk") version of DataStage, due out later this year.
by ray.wurlod
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

Welcome aboard. :D A job sequence is the best way. A StartLoop activity can set up a "list of things" loop based on a regular expression. Pre-loop activity ----> StartLoop ----> Within-loop activities ----> EndLoop ----> Post-loop activity ^ | | | +-------------------------------------------------+
by ray.wurlod
Sun May 14, 2006 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic array manipulation
Replies: 3
Views: 930

For completeness only, GROUPSTORE and FIELDSTORE are synonyms.
by ray.wurlod
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

Check that you have write permission in the project directory. DS_METATEMP is a temporary location used during the import metadata process; it is created and deleted automatically. But if you don't have write permission, it can not be created.
by ray.wurlod
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

Let's wait for the original poster to get back. I have successfully installed DataStage (version 7.5x2) on Windows XP (Professional) sp2, but did not experience this problem. I was logged in as the local Administrator.
by ray.wurlod
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...