Search found 53125 matches

by ray.wurlod
Thu Jul 20, 2006 6:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data not physically getting inserted in the Teradata
Replies: 3
Views: 1012

Change the job to write to a text file with quoted character strings, , to see what your job is really producing. Adjust as necessary.
by ray.wurlod
Thu Jul 20, 2006 6:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MAP_COVG_06,1: APT_DB2Query::fetch failed; code -290: SQL029
Replies: 6
Views: 1623

This can be a "problem" in any database; if it's been locked or quiesced (for backup, perhaps), then DataStage won't be able to load into it. The only consolation is that nothing else can, either.
by ray.wurlod
Thu Jul 20, 2006 6:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot Stage Documentation
Replies: 4
Views: 1073

I think you'll find pivot.pdf is the manual for the server job Pivot stage. But they're very similar in operation.
by ray.wurlod
Thu Jul 20, 2006 6:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Error(DSEE7.5.1A, HP-UNX)
Replies: 4
Views: 2104

The Log view in Director is filtered to the most recent 100 rows by default, to limit the amount of data that must be sent back to the client every time the Director refreshes. To change this invoke the Filter (Ctrl-T, or right-click in the background area). The row count filter is at the bottom of ...
by ray.wurlod
Thu Jul 20, 2006 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the specific data from Text File into DS
Replies: 3
Views: 693

Etiquette Note/Gripe I answered the question as you posed it. That was my design freeze. If you change the specification that's a different question. If you were hiring me, it would be extra money. Please ask the question you really want answered. Construct a design to read the entire record. Use t...
by ray.wurlod
Thu Jul 20, 2006 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: seq file to oracle timestamp
Replies: 6
Views: 1099

All you need to do is to specify an appropriate date picture for the TO_DATE function in your INSERT or UPDATE statement.
by ray.wurlod
Thu Jul 20, 2006 10:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi-Instance jobs and User Status
Replies: 6
Views: 1643

They create separate resource records in RT_STATUSnnn, so ought to preserve separate UserStatus values (which are stored therein). That's the theory. Let us know what really happens.
by ray.wurlod
Thu Jul 20, 2006 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Efficient way of copying rows and dropping columns
Replies: 4
Views: 862

Why are you selecting those columns if you're only going to drop them? Don't select them in the first place!
by ray.wurlod
Thu Jul 20, 2006 10:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of selfmade routine
Replies: 14
Views: 2643

Let me change the punctuation to indicate what I meant. 8)

You can do it in SQL with SQL functions, not with DataStage functions, as Ken indicated.
by ray.wurlod
Thu Jul 20, 2006 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MQ Stage...ds_loadlibrary: error in dlopen
Replies: 5
Views: 1066

Gosh, they must be channeling me also! :lol:
by ray.wurlod
Thu Jul 20, 2006 10:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Operator_Id
Replies: 1
Views: 577

Welcome aboard. :D

I'm not sure what you mean. Can you paraphrase it? Do you mean a GUID generated by a stored procedure? What kind of database are you using?
by ray.wurlod
Thu Jul 20, 2006 10:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot find mandatory property "xml_source_column"
Replies: 1
Views: 2406

Mandatory properties show up red in the stage properties dialog, and should leave a warning icon on the stage, if no value is supplied. The message indicates that there is a mandatory property called xml_source_column for which you have not provided a value. What is the full error text? In particula...
by ray.wurlod
Thu Jul 20, 2006 9:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the specific data from Text File into DS
Replies: 3
Views: 693

Read the file with a Sequential File stage into two integer columns, specifying "/" as the field delimiter property.
by ray.wurlod
Thu Jul 20, 2006 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to count the No. of records coming out from seq. file
Replies: 6
Views: 1520

Set up a stage variable (say svCounter) initialized to 0. Derive it by adding 1 if the delimiter string is seen, or leaving it alone if not.

Code: Select all

If Index(InLink.TheColumn,"@@#",1) > 0 Then svCounter + 1 Else svCounter
by ray.wurlod
Thu Jul 20, 2006 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job performance
Replies: 8
Views: 1879

Your Sequential File stages are probably operating in sequential mode. If they are fixed width format, enable parallel mode. Where does the second input for the Join stage come from? Are you relying on (Auto) partitioning or explicitly specifying Hash or Modulus partitioning on the Join keys? You ar...