Search found 53125 matches
- Thu Oct 28, 2004 3:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: error viewing the data through squential file in the input
- Replies: 1
- Views: 883
This style of message usually means that the shared library search path environment variable has not been properly set. The name of this environment variable varies depending on the UNIX; it might be LD_LIBRARY_PATH, SHLIB_PATH, LIBPATH, and so on. Determine where the missing libraries are (using fi...
- Thu Oct 28, 2004 2:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Execute Oracle Stored Procedure in Routine
- Replies: 10
- Views: 8077
- Thu Oct 28, 2004 2:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Execute Stored Procedure at ODBC stage
- Replies: 7
- Views: 3248
And the other thing is, this being a sharing place, is that we share our solutions. Can you please report how you solved it? If you'd still like help on the stored procedure from ODBC stage (which CAN be done), please post any error messages that appeared in the job log when you tried this approach.
- Thu Oct 28, 2004 2:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: reconciliation of source data and target data
- Replies: 13
- Views: 7536
- Thu Oct 28, 2004 2:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DSExecute fail on special character
- Replies: 3
- Views: 2562
"(" has special meaning to the shell. What if you "escape" the character (precede it with a backslash), for example ?
This is what you would do in UNIX if you wanted to avoid messy quote characters (for example cd \&PH\&)
Code: Select all
echo \( >> ScriptFThis is what you would do in UNIX if you wanted to avoid messy quote characters (for example cd \&PH\&)
- Wed Oct 27, 2004 8:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Bugs for Version 7.x
- Replies: 7
- Views: 2750
- Wed Oct 27, 2004 8:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Capturing Invocation Id
- Replies: 8
- Views: 2403
- Wed Oct 27, 2004 8:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: convert single column records into a string
- Replies: 5
- Views: 1802
- Wed Oct 27, 2004 4:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: convert single column records into a string
- Replies: 5
- Views: 1802
- Wed Oct 27, 2004 3:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Columns to rows - pivot stage ?
- Replies: 5
- Views: 2083
- Wed Oct 27, 2004 3:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Loading columns in the target database
- Replies: 1
- Views: 527
Of course there is, and you do it the same way you'd do it with SQL. Insert the first batch of rows, with suitable default values for those columns to be loaded in the second pass. In the second pass, update the rows with appropriate column values, but only for the columns you need to update. In thi...
- Wed Oct 27, 2004 3:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Capturing Invocation Id
- Replies: 8
- Views: 2403
- Wed Oct 27, 2004 3:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read-Write from Same hash file
- Replies: 2
- Views: 726
- Wed Oct 27, 2004 3:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can not move the file
- Replies: 5
- Views: 1181
In the job PT05OTDisReceiptRegularLoadControlJob make sure you're trying to process E:\HLLDW\PRETEADW\Inprocess\DataFeeds\OTDISPATCHRECEIPTFEED\251004otinteb_new.csv, not E:\HLLDW\PRETEADW\Input\DataFeeds\OTDISPATCHRECEIPTFEED\251004otinteb_new.csv Feedback from your MOVE (or was it COPY?) command i...
- Wed Oct 27, 2004 3:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Moving High-Values to DB2 column
- Replies: 1
- Views: 842
You can generate it with Char(255). Beware, however, that DataStage treats Char(248) through Char(255) in a special way - depending on the context. These characters are what are called dynamic array delimiter characters. If you have NLS enabled, genuine characters in this range will be mapped to the...