Search found 53125 matches
- 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
- 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
- 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
- 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 ...
- 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...
- 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
- 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
- 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
- Thu Jul 20, 2006 10:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Use of selfmade routine
- Replies: 14
- Views: 2643
- 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
- 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
- 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...
- 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
- 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- 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...