Search found 4992 matches

by kcbland
Mon Mar 27, 2006 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing Indexes
Replies: 6
Views: 1651

Use sqlplus to run any SQL script. Choose a Batch or Sequence job to do the deed.
by kcbland
Mon Mar 27, 2006 8:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UtilityHashLookup Error
Replies: 7
Views: 1627

OPENPATH has to be used with hashed files in non-project directories, unless you've used SETFILE to create a pointer.
by kcbland
Mon Mar 27, 2006 5:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Controller problem: Error calling DSRunJob,code=-14
Replies: 8
Views: 8481

It doesn't matter how big your server is if you exceed the ability of the server to handle its tasks. For example, if a 4 cpu machine can't handle 16 simultaneous DS jobs, it reasons that a 8 cpu machine can't handle 32 simultaneous DS jobs. You need to look at the demand placed on the server and ad...
by kcbland
Mon Mar 27, 2006 12:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Various Connection Types
Replies: 27
Views: 7900

Database vendor specific connections are managed thru the database client software, be it an connection layer (OCI, CLI plugins to native DB APIs) or a command line layer (sqlldr, OSQL, etc). ODBC is handled thru the ODBC manager. Any Oracle configurations are managed via Oracle. You need to worry a...
by kcbland
Mon Mar 27, 2006 12:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid character value for cast specification
Replies: 9
Views: 1489

The time may be an issue, try OCONV(ICONV(LEFT(Incoming Link,10),"D4 YMD"),"DQ")
by kcbland
Mon Mar 27, 2006 12:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UVOpen mkdbfile: cannot create file
Replies: 8
Views: 2086

Verify permissions of the directory, umask setting in ds.rc script, and userid with group.
by kcbland
Mon Mar 27, 2006 10:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access violation
Replies: 3
Views: 581

Sounds like a Windoze file that is being accessed may be open by another process. Even having a Windoze Explorer focused on a file will prevent the file from being removed or processed by a DS job.
by kcbland
Mon Mar 27, 2006 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Manipulating data at the bit level
Replies: 3
Views: 1099

No matter what, you'll need a positional cross-reference for each indicator value. Consider writing a function that takes two arguments: value and token. Pass the function the binary text string as the value, and a token such as "FRED", where the token corresponds to an named indicator. Use a CASE s...
by kcbland
Mon Mar 27, 2006 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine job did not finish OK
Replies: 15
Views: 17307

Your routines returned errors, fix them. Post the logic for help (please preserve formatting).
by kcbland
Mon Mar 27, 2006 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transform Output Question
Replies: 5
Views: 1539

No. You'll need to send your database output to another passive stage first and then on to the database. Or, set your commit (if rollback space allows) to 0 and make the database the last link in the execution order. If the files finish first, then the database link will close issuing the commit.
by kcbland
Mon Mar 27, 2006 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pros and cons of using Transactional Model for DW
Replies: 3
Views: 1127

The fact that there's a differing model (Star Schema) for analytical systems indicates there are very good reasons. Consider reading Kimball's Toolkit books for more information why.
by kcbland
Fri Mar 24, 2006 11:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow Start on Certain Jobs
Replies: 3
Views: 765

Troubleshooting a job that mixes source relational stages and target relational stages are nearly impossible to tune. You have too many variables, too many degrees of freedom. Are there database issues stalling source data, are there database issues stalling loading target data? Are your source and ...
by kcbland
Fri Mar 24, 2006 8:17 am
Forum: Site/Forum
Topic: Site slow?
Replies: 3
Views: 2000

Good thing we have a PAID webmaster. Gee, where does that money come from?
by kcbland
Thu Mar 23, 2006 9:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concurrently Accessing the Same Routine.
Replies: 8
Views: 2624

Paste the routine logic, we need to see what the routine is doing to see why concurrent execution might not work.
by kcbland
Thu Mar 23, 2006 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLServer stored procedure within a server job
Replies: 4
Views: 1154

You could gimmick the ODBC stage to output from an SP a dummy row after its done doing whatever you need.