Search found 53125 matches
- Mon May 16, 2011 6:36 pm
- Forum: General
- Topic: Can't run compile save or create a job
- Replies: 16
- Views: 9191
- Mon May 16, 2011 3:28 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Find the parent child relationship
- Replies: 6
- Views: 2437
- Mon May 16, 2011 3:23 pm
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: Not able to view the tables in ProfileStage 7.5.1
- Replies: 1
- Views: 1343
- Mon May 16, 2011 3:21 pm
- Forum: General
- Topic: Can't run compile save or create a job
- Replies: 16
- Views: 9191
- Mon May 16, 2011 3:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Header repeatition in the XML file
- Replies: 3
- Views: 1716
- Sun May 15, 2011 2:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: jobs are failing with same type of error
- Replies: 3
- Views: 2291
- Sat May 14, 2011 3:31 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Running SQL Query
- Replies: 10
- Views: 5005
- Sat May 14, 2011 3:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to delete fifo from RT_SCTEMP folder
- Replies: 1
- Views: 1518
- Sat May 14, 2011 3:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: dataset error..
- Replies: 4
- Views: 1933
- Sat May 14, 2011 1:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to view content of &PH& directory
- Replies: 4
- Views: 1999
Alternatively from the Administrator use the SH command.
Code: Select all
SH -c "ls -lrt '&PH&' > /tmp/PHContents"- Fri May 13, 2011 5:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to view content of &PH& directory
- Replies: 4
- Views: 1999
- Fri May 13, 2011 5:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: validate a char or varchar input string as numeric digits
- Replies: 3
- Views: 2552
Code: Select all
Convert("0123456789", "", InLink.TheString) > ""- Fri May 13, 2011 5:45 pm
- Forum: General
- Topic: Project folders and names translated
- Replies: 2
- Views: 904
- Fri May 13, 2011 2:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: improving performance
- Replies: 2
- Views: 1683
- Fri May 13, 2011 12:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Generating Sequence number for primary key at Taget oracle T
- Replies: 1
- Views: 2147
Don't include the RUN_ID column in your design. Mention it only in the user-defined SQL. I presume you are using an Oracle sequence because there are likely to be other processes inserting rows into this table at the same time that you are. Otherwise consider using a surrogate key stage, which you c...