Search found 53125 matches
- Fri Feb 25, 2005 4:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compilation problem
- Replies: 6
- Views: 1554
- Fri Feb 25, 2005 4:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine Code
- Replies: 17
- Views: 8251
- Fri Feb 25, 2005 4:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file size
- Replies: 8
- Views: 2128
- Fri Feb 25, 2005 4:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Handling the logs
- Replies: 2
- Views: 926
Only it's not a log file - it's a log table (hashed file). So you have no easy mechanism for browsing it from the operating system level. It is always created in the project directory - you are given no control over this - though you can move it later (subject to a number of caveats, not least of wh...
- Fri Feb 25, 2005 4:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Required Parameter
- Replies: 5
- Views: 1231
- Fri Feb 25, 2005 4:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FORMAL difference between server and parallel jobs?
- Replies: 7
- Views: 2062
You might find this piece (in the FAQ forum) on DataStage architecture interesting.
- Fri Feb 25, 2005 4:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete records from a table which are present in a file?
- Replies: 3
- Views: 1032
There's no Lookup stage in server jobs, but the idea is a sound one. I don't know whether the other posters' assumption that you're using Oracle is a correct one. However, no matter what the stage type, if you have a list of keys, supply only those keys. Use user-defined SQL of the form DELETE FROM ...
- Fri Feb 25, 2005 4:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to trace the warnings illegal date/time value
- Replies: 5
- Views: 1976
The way that dates are handled is inconsistent between stage types, so you need to learn what your particular stage type expects. Some expect internal DataStage format, others expect some definite picture/format to be supplied. Once you've learned the rules by which your stage type plays, you can al...
- Fri Feb 25, 2005 3:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data Migration Assistant
- Replies: 1
- Views: 940
You're right, there's no SQL Server or Sybase provided. Choose DB2 or Oracle from the drop-down list (step 2 or step 4 in the Wizard). DB2 asks for database name and server name, Oracle asks for user name only. Create the job (you can load the table definitions from anywhere in the Repository, provi...
- Fri Feb 25, 2005 3:44 pm
- Forum: General
- Topic: After Index rebuilding I cant see any job.
- Replies: 3
- Views: 2769
- Fri Feb 25, 2005 3:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sqlplus in Execute Command
- Replies: 7
- Views: 4166
- Fri Feb 25, 2005 3:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error Code
- Replies: 2
- Views: 1235
When an Oracle table is created, it is created in a table space (an allocation of disk space). This can be made static, or auto-extending. The default is static, which means you can fill the allocated space. Once it's full, an attempt made to extend it will result in the error you reported. Your Ora...
- Fri Feb 25, 2005 3:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Varchar to Numeric
- Replies: 9
- Views: 1997
- Fri Feb 25, 2005 3:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: 32 bit Hash File
- Replies: 3
- Views: 717
The internal pointers are 32-bit twos complement signed integers. The most significant bit is used for the sign. That leaves 31 bits for the value. 32-bit twos complement signed integers range from -2147483648 to +2147483647. (Don't forget zero has to be represented.) Why signed? Because it's necess...
- Fri Feb 25, 2005 3:10 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to execute a unix commad through command stage?
- Replies: 3
- Views: 1074