Search found 53125 matches

by ray.wurlod
Tue Mar 22, 2011 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Any comments from DataStage 8.5 users?
Replies: 15
Views: 11515

With the installer you also get a utility that automatically converts your Enterprise stage types to equivalent Connector stages.
by ray.wurlod
Tue Mar 22, 2011 1:16 pm
Forum: General
Topic: To run a job from Command line
Replies: 11
Views: 4090

To specify a values file use

Code: Select all

-param paramsetname=valuesfilename
by ray.wurlod
Tue Mar 22, 2011 1:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best place to keep ETL data files in Linux?
Replies: 7
Views: 3062

Anywhere that (a) has enough space and (b) is not on the root file system. Avoid /tmp too.
by ray.wurlod
Tue Mar 22, 2011 1:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion
Replies: 3
Views: 1571

Code: Select all

Oconv(inLink.TheCharacter,"MX0C")
or

Code: Select all

Oconv(inLink.TheCharacter,"MX")
depending on the result you want.
by ray.wurlod
Tue Mar 22, 2011 1:10 pm
Forum: General
Topic: How to call Different DB
Replies: 2
Views: 1382

This is the raison d'etre of the Dynamic RDBMS stage. One of its properties is "database type".
by ray.wurlod
Mon Mar 21, 2011 11:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split the long line into multiple lines
Replies: 9
Views: 6392

^Z is the DOS end-of-file marker - it has no particular meaning in UNIX.
Although you should not need to, Convert(@TM,Char(10),TheString) will do the trick.
by ray.wurlod
Mon Mar 21, 2011 8:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split the long line into multiple lines
Replies: 9
Views: 6392

No, the @FM character is automatically converted to UNIX linefeed by the DataStage internals. Check the file with a non-DataStage text viewer. Also make sure that your metadata contain just a single VarChar field when writing.
by ray.wurlod
Mon Mar 21, 2011 4:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split the long line into multiple lines
Replies: 9
Views: 6392

You tried to do too much. Try:

Code: Select all

Convert(@TM,@FM,Fmt(InvcReconMsg.BLRT_RECON_TXT, "70T"))
by ray.wurlod
Mon Mar 21, 2011 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCI_ERROR: Bad Oracle environment after Oracle Client Update
Replies: 7
Views: 4072

This is from memory, but there's probably a shortcut to the appropriate Oracle library directory that may need to be pointed to the correct one. Check, too, that the Oracle environment variables such as ORACLE_HOME are correctly set.
by ray.wurlod
Mon Mar 21, 2011 4:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column size is too large
Replies: 2
Views: 2312

Which, in turn, means that you have probably specified the wrong delimiter. Did you import the table definition for the file and load that into your job design (including Load on the Format tab)?
by ray.wurlod
Mon Mar 21, 2011 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype maxsize in datastage
Replies: 4
Views: 3515

DataStage has no limit, but most database servers do. If you import the table definition it will give you the correct data type, whether it's VarChar or LongVarChar.
by ray.wurlod
Mon Mar 21, 2011 4:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert statement inside a Server routine
Replies: 6
Views: 3217

sqlplus has not returned an exit status of 0, which means it has had a problem. Try redirecting stderr from the sqlplus command to a file that you can inspect subsequently.
by ray.wurlod
Mon Mar 21, 2011 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating packed file
Replies: 10
Views: 3398

Complex Flat File stage.
by ray.wurlod
Mon Mar 21, 2011 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting error in selecting log file
Replies: 2
Views: 2198

Your log has become corrupted because it has attempted to exceed 2GiB in size. Clear the log file and try not to generate so many events.