Search found 15603 matches
- Wed Aug 17, 2005 5:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: constraints in transformer stage
- Replies: 5
- Views: 1817
Luk, did you remember that a constraint gets evaluated to TRUE and then sends the column out that stream. Meaning that if the constraint reads "ISNULL(In.Column)" then only nulls columns are passed, and the REJECT merely takes any rows that haven't gone down any previous links. Looking at your logic...
- Wed Aug 17, 2005 5:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error adding project
- Replies: 10
- Views: 2203
Amos, the home directory (UV) doesn't contain any indexed files, so somewhere during your new project creation phase a CREATE.INDEX has probably failed. This could be due to UNIX or DataStage privileges. Did you do a "VERIFY.SQL {ALL}" as Ray suggested? If you create a dummy directory in /tmp and is...
- Wed Aug 17, 2005 4:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job won't finish
- Replies: 5
- Views: 1551
- Wed Aug 17, 2005 12:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage licenses and SMT on AIX
- Replies: 2
- Views: 1038
DataStage licenses and SMT on AIX
We have a 10-cpu AIX box and are running a DataStage 16-cpu license on this system. The operators have turned on SMT (Simultaneous Multithreading) which makes the system look like it has 20 CPUs. DataStage gives warning messages that the number of licensed CPUs has been exceeded in every job run but...
- Tue Aug 16, 2005 12:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issues while reading a Sequential File
- Replies: 5
- Views: 1142
TheBird, <sigh>. Please read my original response. There is no easy "just click somewhere" option to fix this, unless you can make the person giving you this data change their method. 1. You now know what the problem is. 2. You now know what the rules are to fix this problem. 3. You are a DataStage ...
- Tue Aug 16, 2005 9:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Deleting multiple jobs
- Replies: 6
- Views: 1052
- Tue Aug 16, 2005 9:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issues while reading a Sequential File
- Replies: 5
- Views: 1142
If you have embedded quotes in a string they are doubled (the following is a correctly formatted CSV string:
Code: Select all
"This line is about 4"" long.",1,2,3,"Hello's to all. ""Hi There"" all!"- Tue Aug 16, 2005 7:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Deleting multiple jobs
- Replies: 6
- Views: 1052
- Tue Aug 16, 2005 7:40 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issues while reading a Sequential File
- Replies: 5
- Views: 1142
This is not an uncommon problem. The easiest way to fix this is to make sure that the program creating the sequential file does it correctly - either through use of another quote character or doubling up the quotes as per csv specs. If you cannot do this then you need to modify the sequential file t...
- Tue Aug 16, 2005 1:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Return SIGN function
- Replies: 6
- Views: 1230
- Mon Aug 15, 2005 10:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dividing a name like john w smith.
- Replies: 11
- Views: 2022
- Mon Aug 15, 2005 10:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File useage
- Replies: 6
- Views: 1301
- Mon Aug 15, 2005 9:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File useage
- Replies: 6
- Views: 1301
- Mon Aug 15, 2005 9:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Empty Data Set
- Replies: 3
- Views: 1320
- Mon Aug 15, 2005 7:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Loading DataSets to Oracle Enterprise Stage
- Replies: 1
- Views: 741
It turns out that we the environment variable $APT_ORACLE_LOAD_DELIMITED set (using ";"), which messes the handling of embedded quotes up. I added $APT_ORACLE_LOAD_DELIMITED to the parameters of the job in question and specified "$UNSET" as the value and it ran through flawlessly. (got the solution ...