Search found 53125 matches

by ray.wurlod
Fri Nov 20, 2009 7:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Memory Requirements for DS 8.1 installation for Dev Env
Replies: 2
Views: 1125

Minimum.

Definitely minimum. Particularly if all tiers (repository, services and engine) are to run on that box.
by ray.wurlod
Fri Nov 20, 2009 7:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicate record insert with other value
Replies: 9
Views: 2839

You can "increment" a single character.

Code: Select all

Char(Seq(prevcharacter)+1)
by ray.wurlod
Fri Nov 20, 2009 6:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed length issue
Replies: 12
Views: 2950

pandujoy wrote:is there a way to just make both (source and lookup) fixed widht
Yes, make sure that they have identical data type and are padded with identical characters.

Is your Shift key broken? You aren't e.e.cummings, so please don't try to be.
by ray.wurlod
Fri Nov 20, 2009 6:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: List of DS jobs modified in 'N' days
Replies: 3
Views: 1623

Advanced Find allows you to filter on precisely this kind of requirement. Right click on the result of the find to do whatever else you need, such as export, cross-project compare, etc. Advanced Find allows you to search for (wildcarded) text strings in name and/or description, and its filters inclu...
by ray.wurlod
Fri Nov 20, 2009 6:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can anyone please help where the datastage picks the tnsname
Replies: 7
Views: 2754

While Windows does not have an .odbc.ini file nor the ODBCINI environment variable, it does have a Registry entry called ODBC.INI (a hangover from Windows 3.1 and earlier when there wasn't a registry). This contains ODBC data source names and definitions. Within any DSN for an Oracle connection expl...
by ray.wurlod
Fri Nov 20, 2009 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: option in multi-instance for reading dynamic number of files
Replies: 10
Views: 4607

To do N at a time, create N disjoint lists of file names and run these into a multi-instance sequence (as described above, but multi-instance) all controlled from a master sequence.
by ray.wurlod
Fri Nov 20, 2009 6:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disaster recovery process
Replies: 6
Views: 3071

Nor am I.

IBM (in some countries, at least) does offer a service for implementing HA in DataStage environments but I have never been involved with any such engagement so can not advise on the details of what it involves.
by ray.wurlod
Fri Nov 20, 2009 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ASB Agent goes down frequently
Replies: 1
Views: 1293

What is reported in the ASB agent's log file?
by ray.wurlod
Fri Nov 20, 2009 6:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record on file DS_STAGETYPES can not be written
Replies: 20
Views: 8842

Who set the setgid bit on OVER.30 ?

What are the permissons on the hidden file .Type30 ?
by ray.wurlod
Fri Nov 20, 2009 6:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Import - has import error and no default value
Replies: 2
Views: 2213

I too am surprised by that result. Does it obtain when you're using "regular" metadata rather than a schema file? If not, then you've probably uncovered a bug that you can report to the vendor.
by ray.wurlod
Fri Nov 20, 2009 6:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node Number clause in SQL queries
Replies: 10
Views: 6597

True but, for some reason, the OP specified that he/she want's to use the DataStage (processing) node number. In our various ways we have been trying to advise that the two (DataStage and DB2 node numbers) are unrelated. If you know the number of partitions of the table and specify the DB2 node numb...
by ray.wurlod
Fri Nov 20, 2009 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seen this message: Unable to attach to the given directory
Replies: 8
Views: 4084

Is something else (maybe the MKS Toolkit telnet service) using port #23 on your production machine?

Can you telnet using port 2300 (telnet hostname 2300) ?
by ray.wurlod
Fri Nov 20, 2009 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: project scenario in data stage
Replies: 1
Views: 925

No, unless you can guarantee that you have accessibility to every kind of database to which DataStage can connect.

<rant>Resist stupid requirements!</rant>
by ray.wurlod
Fri Nov 20, 2009 6:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Files Deletion using datastage
Replies: 10
Views: 2425

There's more than one way to skin a cat in DataStage. Here's another solution: Hashed file stage to read the directory "keys" (file names) from a pathed "hashed file" (Type 19). Constraint in Transformer stage to extract and compare the date. Command stage to effect the delete.
by ray.wurlod
Fri Nov 20, 2009 6:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trick for sequential stage for variable length
Replies: 2
Views: 1033

Separate the reading and the parsing. Read the file as having a single field (data type VarChar), with first line is column headings set so that the first line is ignored if that's appropriate. In a downstream Transformer stage use substring techniques to parse the record into its composite fields.