Search found 4992 matches

by kcbland
Tue Feb 21, 2006 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Initial load
Replies: 7
Views: 1917

Use intelligent job control, read your Sequential file value and pass it to jobs as a parameter, use the parameter in your WHERE clause to avoid spooling unnecessary rows, and have your job control update your Sequential file when finished.
by kcbland
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

KPReddy wrote:Thanks Kenneth,
To use sqlldr to load data on remote DB load files need not be on DB server. I have invoked sqlldr from DS and loaded data on remote DB.

Only for conventional load does this work.
DIRECT path requires load files to be co-resident with the database instance.
by kcbland
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...
by kcbland
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...
by kcbland
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

A lot of functionality is available within the dsjob command line program. You can query a project for a list of jobs, then cycle thru the list of jobs and request the current status of each.
by kcbland
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...
by kcbland
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...
by kcbland
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

Methinks you are bumping up against some limit, such as a 32BIT hash file being stuffed too full, database rollback exceeded, snapshot too old, etc. Can you describe the nature of the job that blows up and paste all yellow and red error messages?
by kcbland
Mon Feb 20, 2006 12:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: long varchar to varchar
Replies: 8
Views: 1747

Have you twiddled with the metadata in the target stage column? It sounds like it's complaining about VARCHAR(315), maybe a LONG VARCHAR, TEXT, or something similar is required on DB2 CLI for text larger than 255.
by kcbland
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...
by kcbland
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...
by kcbland
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...
by kcbland
Mon Feb 20, 2006 12:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: long varchar to varchar
Replies: 8
Views: 1747

Server or Parallel job, which stages (ODBC,CLI, PX?)
by kcbland
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...
by kcbland
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

Turn it into DDL and create a table. All that really matters for a Sequential file stage is column name, position, length (if fixed width then it's really the DISPLAY column that's used, and scale. The data type can be all VARCHAR if it's a delimited file.