Search found 4992 matches
- Tue Jul 25, 2006 6:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Append in Oracle Bulk loading
- Replies: 13
- Views: 2974
- Mon Jul 24, 2006 5:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Timestamp datatype
- Replies: 7
- Views: 1809
If this is your DML:
then you have a trailing comma
Code: Select all
insert into datefield values
TO_timestamp(:7, 'YYYY-MM-DD HH24:MI:SS:FF'), then you have a trailing comma
- Mon Jul 24, 2006 4:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Timestamp datatype
- Replies: 7
- Views: 1809
- Mon Jul 24, 2006 4:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Append in Oracle Bulk loading
- Replies: 13
- Views: 2974
- Mon Jul 24, 2006 4:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Append in Oracle Bulk loading
- Replies: 13
- Views: 2974
- Mon Jul 24, 2006 4:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Timestamp datatype
- Replies: 7
- Views: 1809
- Mon Jul 24, 2006 4:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Append in Oracle Bulk loading
- Replies: 13
- Views: 2974
- Mon Jul 24, 2006 3:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Append in Oracle Bulk loading
- Replies: 13
- Views: 2974
- Mon Jul 24, 2006 2:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get first 2 lines of a file
- Replies: 5
- Views: 1357
- Mon Jul 24, 2006 1:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: passing a value in parameter
- Replies: 3
- Views: 1047
- Mon Jul 24, 2006 12:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get first 2 lines of a file
- Replies: 5
- Views: 1357
Since you're on Windoze you can't do a "head -n2 yourfile" unix command. You're going to having to write your own. For small files you could just use DSExecute API with command "type yourfile" and then use the first two rows in the screen output variable. But for large files you might as well write ...
- Mon Jul 24, 2006 12:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unexpected Error
- Replies: 4
- Views: 1059
The compiled routine is requiring 3 arguments per the message. Check the routine and if necessary recompile it. See if the job complains again after you recompile the routine. If this is a standard before/after Routine there are only two arguments allowed, it it's a custom Universe function then mor...
- Sun Jul 23, 2006 9:44 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: sending mails by pickuping from Teradata Database
- Replies: 4
- Views: 987
- Sun Jul 23, 2006 9:28 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Key points for PX development
- Replies: 7
- Views: 1551
1. Thou shalt remember that PX comes with Server as well, so decide when to do it as pure PX and not. 2. Thou shalt spend remember not to hog the server nodes until running full stress tests. 3. Thou shalt use a wimpy node pool during minor test runs so that Director doesn't crawl and (-14) errors d...
- Sun Jul 23, 2006 9:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to have multiple conditions in unix
- Replies: 4
- Views: 1009
Why use bourne shell? You can use korn shell and have lots more functionality. Just stick this as the first line in your script and it will work under the korn shell interpreter:
Code: Select all
#!/bin/ksh