Search found 53125 matches

by ray.wurlod
Thu Aug 02, 2007 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error viewing data using ODBC for Informix.
Replies: 5
Views: 4306

Do you happen to know what's in the patch? In particular is it a different version of the ODBC driver?
by ray.wurlod
Thu Aug 02, 2007 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unexpected reasons for failure
Replies: 4
Views: 1326

Surely ALL reasons for failure are unexpected. Do try to create more meaningful subjects!

What's in the file?
by ray.wurlod
Thu Aug 02, 2007 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential stage should create file only when records exist
Replies: 7
Views: 1805

Code: Select all

test -z #pathname# && rm #pathname#
handed to ExecSH as an after-job subroutine.
by ray.wurlod
Thu Aug 02, 2007 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading an entire row from sequential file
Replies: 3
Views: 1530

Have you tried delimiters such as ctrl-Y (025) or ctrl-A (001) ? How about something above 128, say 170 (which I chose at random) ? Or 255 or 254 ?
by ray.wurlod
Thu Aug 02, 2007 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Stage Performance
Replies: 6
Views: 1590

Don't confuse the time it takes to return the first row of results (in TOAD) with the time it takes to complete.
by ray.wurlod
Thu Aug 02, 2007 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Warning Message
Replies: 6
Views: 933

Look in RT_BP28/JOB.1521029963.DT.1443855705.TRANS1 at or around line number 91 to see what you can see there. This file will exist on the DataStage server machine.
by ray.wurlod
Thu Aug 02, 2007 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is purpose of $APT_RECORD_COUNT and $OSH_PRINT_SCHEMAS
Replies: 3
Views: 3073

Each causes additional entries to be logged. APT_RECORD_COUNT causes each player process to log an entry showing the number of records it processed. It does this as part of its shutdown processing. OSH_PRINT_SCHEMAS causes each player process to log an entry showing the actual record schema it used....
by ray.wurlod
Thu Aug 02, 2007 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage sample..T1 detected
Replies: 10
Views: 2951

Is johm73 the same poster as skumar (the original poster)?
:?
by ray.wurlod
Thu Aug 02, 2007 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Response to Private message on Update to sdkseq
Replies: 3
Views: 890

This could also be built as a server job, containing just a Transformer stage and a Hashed File stage, that generates exactly one row containing the sequence name and new value.
by ray.wurlod
Thu Aug 02, 2007 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameter selection in Execute Command Activity stage
Replies: 1
Views: 694

This is the example used in IBM's training class except that you have missed the most important part, namely the fact that SH is not the command they issue, but rather one that expects to get name=value pairs on its command line. $JobName and $JobStatus are "activity variables" whose purpose should ...
by ray.wurlod
Thu Aug 02, 2007 2:41 pm
Forum: General
Topic: Swapping Projects
Replies: 2
Views: 955

There would be an issue with the indexes; you would need to DS.REINDEX ALL in both projects after all the mv commands. Also, DataStage would still have recorded in its "system tables" the old names at their old locations, which would need to be corrected by updating UV.ACCOUNT and by using VERIFY.SQ...
by ray.wurlod
Thu Aug 02, 2007 6:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import multiple table definitions using Orchestrate schema
Replies: 3
Views: 2051

It's one at a time.

You could create a shell script that invoked orchdbutil over and over, but there's nothing "out of the box".
by ray.wurlod
Thu Aug 02, 2007 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Loading Based On Size of the Source
Replies: 5
Views: 863

Not true. Multi-instance jobs run as and when you request. That said, you don't need multi-instance to run the same job over and over but only one instance at any one time. Why do you have this strange requirement to load only 10MB at a time? Is this your design, or an imposed requirement? If the la...
by ray.wurlod
Thu Aug 02, 2007 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using DSGetJobInfo
Replies: 15
Views: 16091

WHERE are you proposing to use this function? If you need the row count inside a Transformer stage it's already exposed through system variables. If you don't need it until the job has processed all rows, then you can use DSGetJobInfo() - or the macros that you discovered - in an after-job subroutin...
by ray.wurlod
Thu Aug 02, 2007 6:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with column import stage
Replies: 8
Views: 2223

In record 0 (the first line in the source file/data set) you don't have enough metadata to describe the entire record. Is the field delimiter correctly set? Is the record delimiter correctly set? Do you require a final delimiter?