Search found 4992 matches
- Tue Feb 21, 2006 2:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Initial load
- Replies: 7
- Views: 1917
- Tue Feb 21, 2006 2:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle OCI Load (Automatic Mode) Error
- Replies: 31
- Views: 9237
- Tue Feb 21, 2006 1:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle OCI Load (Automatic Mode) Error
- Replies: 31
- Views: 9237
Your issue is simple. The load files have to physically be on the same server as the database. Also, you must run sqlldr on that server, not invoked remotely. Therefore, to load your files you must ftp them to the database server and then rsh execute sqlldr. In order to use DIRECT path, you must und...
- Tue Feb 21, 2006 10:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: New Install 7.5.1A and Import of the dsx Projects
- Replies: 4
- Views: 999
When you installed the new version of DataStage, did you use the Enterprise (PX) license or Server license? I've seen this issue when an Enterprise license was used but the Server license was left blank. You actually couldn't have Server jobs, just PX jobs and Sequencers (which are really Server job...
- Mon Feb 20, 2006 4:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Report on jobs currently running in DS server
- Replies: 18
- Views: 8030
- Mon Feb 20, 2006 4:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Source Files not available - error handling
- Replies: 5
- Views: 1001
There's no functionality inherent in the products for monitoring file availability. There are various methods, some using Unix scripts, others using DS BASIC or Sequencers, for detecting the presence of files. No matter what, you will program your own solution. As far as what I would do, I would wri...
- Mon Feb 20, 2006 1:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extremely slow Oracle Loading
- Replies: 15
- Views: 6262
Reasons inserting into a table progressively degrades, any number of the following: indexes, FK constraints, rollback, commit, triggers, tablespaces, partitions. Triggers are huge impactors of insert performance. Then again, what is your SQL? Insert only or are there inserts and updates? Take your t...
- Mon Feb 20, 2006 1:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Issues while loading more number of rows to target
- Replies: 5
- Views: 955
- Mon Feb 20, 2006 12:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: long varchar to varchar
- Replies: 8
- Views: 1747
- Mon Feb 20, 2006 12:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: LONG DataType
- Replies: 3
- Views: 816
Try to set the data type to VARCHAR and the width of the column to 4000. DS does not support CLOBS, so you'll have to fool the stage and see if it will bind using VARCHAR. If it does (I don't know your Oracle release or DS version) then you will be okay to pull upto 4000 chars from the column. Try u...
- Mon Feb 20, 2006 12:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Automatic Import of File Definition?
- Replies: 8
- Views: 1677
On Server jobs the data types in a Sequential file are irrelevant for reading the data. All that matters is column names, order, and size (if fixed width). Therefore, thru some simple Excel spreadsheet manipulation, you could simply take your column names and create a DDL statement using VARCHAR and...
- Mon Feb 20, 2006 12:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS Cannot open RT files
- Replies: 5
- Views: 4520
Methinks you have a permissions issue. The userid that imports the job must belong to the same group that executes the job, provided your umask setting is 002. Since every job has supporting files that keep status, log, and configuration information, different users may not share access to the suppo...
- Mon Feb 20, 2006 12:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: long varchar to varchar
- Replies: 8
- Views: 1747
- Mon Feb 20, 2006 11:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Call to SQLFetch failed
- Replies: 13
- Views: 4281
Since I don't know your job design, consider doing the following. Put an @FALSE constraint in the first transformer after the ODBC stage. This will cause the job to run and have all rows transferred from the source database to the transformer and then be thrown away. If the query completes successfu...
- Mon Feb 20, 2006 11:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Automatic Import of File Definition?
- Replies: 8
- Views: 1677