Search found 4992 matches

by kcbland
Wed Nov 16, 2005 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error loading DATE into ORACLE
Replies: 5
Views: 2570

In the time it took to type in your ASAP question, you could have used the Search facility and found the answer yourself. Your lack of knowledge of Oracle date handling will be greatly reduced if you spend a few minutes researching and learning rather than posting ASAP requests when single issues co...
by kcbland
Wed Nov 16, 2005 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Residing in a category
Replies: 1
Views: 474

Opening and saving a routine without compiling actually removes the compiled code. Jobs using that routine will fail because the compiled code is now missing.

Maybe during your drag and drop you opened the routine. Even saving-as another name doesn't copy the compiled code.
by kcbland
Tue Nov 15, 2005 1:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle error when oci 8 stage used as lookup
Replies: 2
Views: 910

Change: CONTACT_FIRST_NM = :4 OR (:4 IS NULL AND CONTACT_FIRST_NM IS NULL to NVL(CONTACT_FIRST_NM, 'xxxxxx') = :4 and put into the derivation of the key expression mapping value for CONTACT_FIRST_NM If ISNULL(inlink.CONTACT_FIRST_NM) Then 'xxxxxx' Else inlink.CONTACT_FIRST_NM You...
by kcbland
Tue Nov 15, 2005 12:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import Table definition in excel
Replies: 2
Views: 957

Excel files are not supported as a file type. Delimited files such as a .csv are supported, but if you need to access Excel data either save it as a .csv file or link the Excel file into SQL-Server and setup an ODBC connection to SQL-Server.
by kcbland
Tue Nov 15, 2005 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine example code
Replies: 2
Views: 1236

In your routine use the DSExecute API to run system commands. By running sqlplus with the appropriate information you can get the results and error checking you desire.
by kcbland
Tue Nov 15, 2005 11:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: moving jobs
Replies: 8
Views: 1707

Are you in a protected project? Are you trying to move between projects?
by kcbland
Tue Nov 15, 2005 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: moving jobs
Replies: 8
Views: 1707

Goto to DS Manager, go to the folder you want, select all jobs and right-click choose "Move-to ..." and type in the new category.

If the category already exists, just drag and drop.
by kcbland
Tue Nov 15, 2005 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Input files to a server job
Replies: 5
Views: 1328

Execute a "touch /here/yourfilename" to create an empty file prior to running the job that expects the files. If the file exists, nothing happens to the data. If the file doesn't exist, a 0 byte file is created.
by kcbland
Mon Nov 14, 2005 7:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI 8 stage
Replies: 2
Views: 600

Any usage of that primary key as a foreign key needs to be handled. If you have a parent-child relationship with tables, you shouldn't have orphans after you change the primary key value.

Are you sure this is what you need to do?
by kcbland
Mon Nov 14, 2005 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can we call stored procedures using before/after routines
Replies: 3
Views: 1502

Whatever you build into the script can pass the appropriate error codes back to DS. Non-zero return codes from shell scripts can generate a fatal error if you like. It's up to you to write a robust script that error checks the stored procedure and sets the proper script return code.
by kcbland
Mon Nov 14, 2005 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP Binary Data from Mainframe to Sequential
Replies: 3
Views: 1145

If you are trying to use the FTP stage to copy a binary file from the mainframe to the server and retain it as a binary file, then I suggest you use the command line version of FTP to do the copy. The FTP stage is trying to read the file with row delimiters, which you don't have, it's binary not seq...
by kcbland
Mon Nov 14, 2005 2:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP Binary Data from Mainframe to Sequential
Replies: 3
Views: 1145

The metadata that defines the column definitions of the source data does not match that in the actual source data.
by kcbland
Mon Nov 14, 2005 1:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem using Link Partitioner and Hash lookup
Replies: 12
Views: 3566

Are you monitoring the server load to determine if your timeouts were actually caused by significant load on the machine? When you divide your processing across more cpus, you introduced more overhead to the machine as well as opened up your process to certain issues. If you can, please use top or p...
by kcbland
Mon Nov 14, 2005 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can we call stored procedures using before/after routines
Replies: 3
Views: 1502

One method is to write a .bat script using the command line interface to your unnamed database. If Oracle, I suggest using sqplus, if SQL-Server, OSQL/ISQL is a good choice.

Use the script in the before/after transformer/job routine call of ExecDOS.
by kcbland
Mon Nov 14, 2005 12:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash Files
Replies: 2
Views: 834

There is no such concept in a hash file of delimited or fixed width data. The S is for specialized Universe data sources that have multi or sub-multi-valued data. Ignore it.