Search found 53125 matches

by ray.wurlod
Wed Jun 23, 2004 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configration File
Replies: 4
Views: 2252

For each logical processing node you can configure
    one or more directories for temporary storage

    one or more directories for permanent storage (e.g. file sets)
by ray.wurlod
Wed Jun 23, 2004 3:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configration File
Replies: 4
Views: 2252

The DataStage Manager manual is where the configuration file is described in detail.
by ray.wurlod
Wed Jun 23, 2004 12:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling NULLs in fixed-width column sequential file
Replies: 6
Views: 2352

Had you been on UNIX you would have had another possibility, to use tr as a filter command in your Sequential File stage.
by ray.wurlod
Wed Jun 23, 2004 12:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling NULLs in fixed-width column sequential file
Replies: 6
Views: 2352

You want to Trim the "*" characters. Or you can convert them to "". In column derivation expressions in a Transformer stage use either of the following:

Code: Select all

Trim(InLink.empname, "*", "T")

Convert("*", "", InLink.empname)
by ray.wurlod
Wed Jun 23, 2004 12:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Export Backup
Replies: 8
Views: 1582

Don't tell me, tell Craig! :lol: His suggestion is based on the notion that your Repository indexing may have become incorrect; there is an option in the DS.TOOLS menu for repairing those indexes.

Have you chased this alleged "known issue" through support yet?
by ray.wurlod
Tue Jun 22, 2004 11:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import DataStage 7 job into DataStage 6
Replies: 3
Views: 1203

No. There are properties in 7.x DataStage objects that are not in 6.x, so that the 6.x imported would not understand them. No-one, as far as I am aware, has created a mechanism for hacking a DSX or XML file to remove the newer release components. If you can make a business case, you could submit an ...
by ray.wurlod
Tue Jun 22, 2004 11:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create custom errors from an Info message?
Replies: 1
Views: 766

The SEVERITY column in the log (which is a DataStage hashed file) is a virtual column based upon an ennumerated value in the column TYPE. Type Severity 1 Info 2 Warning 3 Fatal 4 Reject 5 Started 6 Reset 7 Error 8 Debug In theory, you could use an UPDATE statement to change TYPE from 1 to 2 (or even...
by ray.wurlod
Tue Jun 22, 2004 11:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove or modify generated SQL?
Replies: 5
Views: 1342

What stage type are you using?

The answer is different depending on whether it's an ORAOCI stage (which one?) or an ODBC stage.
by ray.wurlod
Tue Jun 22, 2004 4:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Referencing a column name which contains a space
Replies: 2
Views: 1211

Kim means the "correct" quote character. Alas, despite ODBC being a standard, different databases specify different quote characters. The ODBC standard - a Microsoft-published standard - specifies the double quote character (") for delimited identifiers. But MS Access (a Microsoft product) uses a ba...
by ray.wurlod
Tue Jun 22, 2004 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uvbackup & uvrestore
Replies: 3
Views: 2519

The uvbackup utility is no better than regular UNIX backups for PX, because there's no internal "UniVerse" structure in the generated PX objects. For quick help, get to a TCL prompt on the server, and execute the command HELP uvbackup (there are lots of options, and the command is in lower case even...
by ray.wurlod
Tue Jun 22, 2004 4:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pc locks up when in Transformer
Replies: 7
Views: 1620

Who knows? DataStage clients are a complex inter-relationship of executables, libraries, ActiveX controls and all kinds of other stuff. Like most Windows software! Version 7.x of DataStage is built on a .NET framework, and is thus slightly different. So, if by "solve" you simply mean that the proble...
by ray.wurlod
Tue Jun 22, 2004 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Export Backup
Replies: 8
Views: 1582

I vaguely recall that was a known problem with some 5.x releases. Contact your support provider to follow it up with Ascential.

Might even be worth a search here, particularly in the Oliver archive.
by ray.wurlod
Tue Jun 22, 2004 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File-Is there any way to insert duplicates
Replies: 3
Views: 1493

@OUTROWNUM numbers the rows leaving a Transformer on an output link. When the keys form an unbroken integer sequence, the dynamic hashed file SEQ.NUM hashing algorithm is far more efficient than the default, GENERAL, hashing algorithm. Every UniVerse table is physically a hashed file. So, when you c...
by ray.wurlod
Tue Jun 22, 2004 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pc locks up when in Transformer
Replies: 7
Views: 1620

Support may have asked you to do this already. To find out where the hang is, enable server-side tracing (either from the Administrator client or from the DS.TOOLS menu on the server). Next, open a Designer. You will get a warning that server side tracing is enabled. Open a job that contains a Trans...
by ray.wurlod
Tue Jun 22, 2004 3:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multirow reference ONLY from ODBC?
Replies: 1
Views: 1057

Use a UV stage to access your hashed file! 8)

The UV stage, too, supports multiple row returns from reference lookups.