Search found 53125 matches

by ray.wurlod
Thu Mar 17, 2005 4:36 am
Forum: General
Topic: automatic clearing job logs by routine?
Replies: 4
Views: 1921

Yes, it can be done. Others will post suggestions that use CLEAR.FILE; please try to avoid that, as you also lose all the control records. And purging the log of a running job has potential hazards; after all, that log is still being updated if you access it from an after-job subroutine. It is bette...
by ray.wurlod
Thu Mar 17, 2005 4:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job control
Replies: 9
Views: 2964

There is also a number of competent consultants who could create your initial few and mentor you in the process at the same time.
by ray.wurlod
Wed Mar 16, 2005 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing a sequential file and treating like a table
Replies: 11
Views: 5010

Try using the ODBC driver for text files rather than the ODBC driver for Sybase. I vaguely recall, however, that one requirement to use this driver is that the text file has column headings in line 1. This may thwart you.
by ray.wurlod
Wed Mar 16, 2005 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hardcoded value in output Pivot Column based on input column
Replies: 2
Views: 748

Precede the Pivot stage with a Transformer stage in which there are two more columns with constants as values ('CELL' and 'EMERGENCY'). Include these as pivoting columns.
by ray.wurlod
Wed Mar 16, 2005 3:11 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Mutex error with only released jobs....Urgent..
Replies: 1
Views: 1829

Not really sure what the connection with ProfileStage is here. Have you sought advice from your support provider? Sounds like there's something odd about released jobs - maybe overheads associated with determining the actual release number. Meantime, the workaround is to use non-released jobs. Use V...
by ray.wurlod
Wed Mar 16, 2005 2:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: debugging client has discontected
Replies: 3
Views: 1079

This is a known bug in version 7.1. It typically occurs immediately after execution pauses at the first breakpoint is encountered. Have not yet had the chance to test at 7.5.
by ray.wurlod
Wed Mar 16, 2005 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migrate from 6.x to 7.x
Replies: 1
Views: 906

Take a backup of your DataStage server. Take an export of the project. Verify that each is good. Axiom: if you have good backups, you'll never need them. Corollary: Disaster occurs only when you lack good backups. Install as per instructions, not forgetting the new run time library on the mainframe....
by ray.wurlod
Tue Mar 15, 2005 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use the UDB/DB2 Load in AS/400
Replies: 1
Views: 1467

This stage type allows DataStage to prepare control and data files for the DB2 (UDB) bulk loader. You can choose to have the bulk loader started automatically from DataStage's control, or to execute it outside of DataStage.
by ray.wurlod
Tue Mar 15, 2005 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Default NULL string
Replies: 8
Views: 1624

The NULL representation specified in the Sequential File stage is how you want NULL to be represented in your text file. By default it is "" (a zero length string). Whatever string you put into this field replaces NULL. For example, "<NULL>" is quite a common representation. I am not aware of any me...
by ray.wurlod
Tue Mar 15, 2005 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: process for previous month data range
Replies: 10
Views: 3260

Create two simple routines FirstOfPreviousMonth and LastOfPreviousMonth and invoke them through Routine Activities in a job sequence. Use the return value from the routine to supply the value to the job parameters. FUNCTION LastOfPreviousMonth(Arg1) * Arg1 is an internal format date, for exa...
by ray.wurlod
Tue Mar 15, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance Job Invocations
Replies: 9
Views: 2727

Definitely works through to version 7.1. Have not had opportunity to check on version 7.5 but have not reason to believe it's any different.

Hawk (8.x?), however, is another story entirely! :shock:
by ray.wurlod
Tue Mar 15, 2005 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting error while opening datastage director
Replies: 5
Views: 2260

The most likely problem for error 81016 is that dsrpcd is not running on the server machine. If it's not running, you can diagnose why it won't start, or simply try to re-start DataStage services and check that it's now running. The most usual cause for failure to restart dsrpcd is that it can't bin...
by ray.wurlod
Tue Mar 15, 2005 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase OC Error - libct.so: open failed:
Replies: 3
Views: 2552

There are other files.
Scripts are provided (in the sample directory IIRC) for enabling or disabling impersonation mode. These will look after setting permissions correctly.
by ray.wurlod
Tue Mar 15, 2005 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cutting Sequential Files
Replies: 11
Views: 1395

JezT, a) You can use a pivot stage on the data, and then remove all 00000000 valued rows. b) write the data to a Hash file with a key being the branch number and a multivalue column containing the account string, with each account separated by a @VM. Then read the hash file and normalize on the acc...
by ray.wurlod
Tue Mar 15, 2005 1:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to release multiple jobs...
Replies: 6
Views: 1458

You can't do it through the sequence. You must multi-select the jobs in question in the dialog from the Manager. Please note that releasing jobs is deprecated technology. The preferred approach nowadays (since about version 3.3!) is to use Version Control to create read-only jobs and other objects i...