Search found 42189 matches

by chulett
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...
by chulett
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

Simply change your 'Update Action' on the 'Inputs/General' tab to 'Update existing rows only'. The stage will generate the SQL that you need.
by chulett
Wed Mar 17, 2004 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Moving Version Control project
Replies: 1
Views: 1270

Asked and Answered! :wink:

Check this post out where I had the same issue last October.
by chulett
Wed Mar 17, 2004 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to allocate memory
Replies: 2
Views: 1338

And if that's the case - I hope your Hash file wasn't in your Project! More troubles coming if so...
by chulett
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...
by chulett
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...
by chulett
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...
by chulett
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 ...
by chulett
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

How many columns do you have defined in the link that is trying to run this SQL? One, I hope. :wink:

:idea: Try it without the trailing semi-colon for grins. The OCI stage doesn't like them, perhaps the ODBC stage is the same way.
by chulett
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

How long do you wait before you decide something is wrong? Any chance your SQL statement may take a long time to 'build' and start spooling output? Big sorts or groups, perhaps? If so, that whole time your job will say Running but no rows will show as being processed - yet.
by chulett
Tue Mar 16, 2004 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Installation problem
Replies: 4
Views: 1763

What user are you doing the Server install as? UNIX server installs have prerequisites, have you checked the README to see if there are any for a Windows server install?
by chulett
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...
by chulett
Tue Mar 16, 2004 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: constant parameter
Replies: 4
Views: 1182

Yes, it is. But when you've got one you only want to set once and never change over the life of the job, a lot of people don't realize you can put the full derivation expression in the Initial Value field. 8) 8)

Double cool. :lol:
by chulett
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...
by chulett
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...