Search found 42189 matches
- Thu Mar 18, 2004 8:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Changing ODBC SQL file layouts?
- Replies: 3
- Views: 1092
Correct - but technically, it doesn't matter what order you do the two things in, as long as both are done before you try running the jobs again. Some people prefer changing the tables first, as this allows them to re-import the metadata and to test right away, but for a simply change you can manual...
- Wed Mar 17, 2004 3:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need example of UPDATE statement placement in an ODBC stage
- Replies: 2
- Views: 1137
- Wed Mar 17, 2004 8:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Moving Version Control project
- Replies: 1
- Views: 1270
- Wed Mar 17, 2004 7:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to allocate memory
- Replies: 2
- Views: 1338
- Wed Mar 17, 2004 7:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Custom Transforms ?
- Replies: 1
- Views: 1043
Not sure what you are asking... have you tried looking at or using one yet? You 'use' a Transform the same way you use anything else - type in it or pick it from the appropriate category of the little helper thing (forget the actual name) under the ellipsis (...) in the Derivation Editor. In this ca...
- Wed Mar 17, 2004 7:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Trouble populating output columns
- Replies: 6
- Views: 2350
That's... odd. About the simplest derivation you can put in a job is @NULL, I can't imagine why that would cause all of those compile errors without seeing the actual job. I'd report this to Ascential Support and see if they can make heads or tails of it. As a suggestion, if you've got several colum...
- Wed Mar 17, 2004 7:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle 9i runtime client
- Replies: 2
- Views: 836
Thomas, I'm assuming you are trying to connect to a remote Oracle 9i database, one that is not on the same server with DataStage. What you need installed on your DataStage server is (ideally) the same version of Oracle as is running remotely. You don't need to create any databases, just get it insta...
- Tue Mar 16, 2004 5:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORAOCI8 X ORAOCIBL
- Replies: 3
- Views: 1850
And for more information on functionality, read the .pdf manuals installed with your Client software. You should find a "Docs" directory there full of information, including manuals for the Oracle OCI8 and the two Oracle "Bulk" Load plugins. For older Client installs, you'll need to pull the Plugin ...
- Tue Mar 16, 2004 7:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: AS400 / ODBC / User-defined sql
- Replies: 14
- Views: 4314
- Tue Mar 16, 2004 7:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Informix Extraction job keeps on running.......
- Replies: 2
- Views: 1870
- Tue Mar 16, 2004 7:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Server Installation problem
- Replies: 4
- Views: 1763
- Tue Mar 16, 2004 7:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Trouble populating output columns
- Replies: 6
- Views: 2350
Post the exact syntax for one of your derivations it is complaining about. I suspect you've got a simple syntax error and don't realize it. Apologies if this is old news, but to set something to null use "@NULL" instead of "(@Null)" which is how it looks like you are doing it from your compiler erro...
- Tue Mar 16, 2004 7:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: constant parameter
- Replies: 4
- Views: 1182
- Mon Mar 15, 2004 11:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: AS400 / ODBC / User-defined sql
- Replies: 14
- Views: 4314
And I can't use the 'normal' SQL for a deletion only as it does not exist in the ODBC!! That's one of the (many) reasons I avoid ODBC if at all possible. The only reason I asked about the question marks was the fact that they aren't in the SQL you posted and said you were using. Just for grins, can...
- Mon Mar 15, 2004 11:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: AS400 / ODBC / User-defined sql
- Replies: 14
- Views: 4314
Here is an example of the SQL I am trying to execute : DELETE FROM HMLIMSNRA.MILOCK1P WHERE (MLKEY = 2); An update would be UPDATE HMLIMSNRA.MILOCK1P set MLKEY=3 where MLLOCK=6; What are "2", "3" and "6" above? Column numbers? The ODBC Stage uses question marks as parameter markers, not column numb...