Search found 4992 matches

by kcbland
Wed Jan 18, 2006 11:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Issue
Replies: 6
Views: 1154

Your original solution was great, you just needed to add an additional column at the beginning of each output file. The derivation of that column is @INROWUM. This means that each output file would have a column that is the original line number in the source file. Carry that value to the end of your...
by kcbland
Wed Jan 18, 2006 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Test plan
Replies: 3
Views: 796

Test plans are part of software development. This website is devoted to implementing IBM's data integration products. There are no components that deal with automating testing, such as test data generators and test case generators. You're talking about making your own standards for testing. When it ...
by kcbland
Wed Jan 18, 2006 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Plugin doesn't work
Replies: 2
Views: 669

On the DS Server, can you connect using SQLPlus? Was the Oracle client installed as Administrator and enabled for all users?
by kcbland
Wed Jan 18, 2006 10:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Readonly Routines
Replies: 2
Views: 765

Yes, but only by using a "hack" update into the internal repository to mark the routine as read only or exporting the routine and updating the metadata in the .dsx file to mark the routine as read only. There's no checkbox or other supported method for doing what you ask in the Manager/Designer clie...
by kcbland
Wed Jan 18, 2006 10:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Terrible Performance due to log file
Replies: 25
Views: 8432

The logs degrade performance only when the job has to put a message into its log file. Since the log file is actually a dynamic hash file, an extremely large hash file may take longer to add a row, especially if the file just happens to need to dynamically expand at that point in time. If the job is...
by kcbland
Wed Jan 18, 2006 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unregen/uvrestore
Replies: 1
Views: 535

The Search facility is your friend.
by kcbland
Tue Jan 17, 2006 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to ignore lines at the beginning and ending of a file
Replies: 11
Views: 4627

shyamsrp wrote:Iam throwing out the row which contains the DATE, as that is header data

Don't throw it out, parse it and update a stage variable. Use the stage variable in the derivation of the target column.
by kcbland
Tue Jan 17, 2006 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to ignore lines at the beginning and ending of a file
Replies: 11
Views: 4627

Use a stage variable to hold the value from the row that contains the date.
by kcbland
Tue Jan 17, 2006 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid Argument Value in a single delete statement
Replies: 8
Views: 1785

Double-check your datatypes. Are you sure this is the actual row of data? Sometimes NULLs have issues.
by kcbland
Mon Jan 16, 2006 9:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ROW TO COL
Replies: 17
Views: 5695

Thanks for backing me up Ray.

Ken, Kenneth, Mr. Bland, hey mister, buddy, yo, but for heavens sake, never Kenny.
by kcbland
Mon Jan 16, 2006 4:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ROW TO COL
Replies: 17
Views: 5695

Use three stage variables: GroupKeyChanged = CurrentGroupKey <> inlink.groupkeycolumn CurrentGroupInternalNumber = If GroupKeyChanged Then 1 Else CurrentGroupInternalNumber + 1 CurrentGroupKey = inlink.groupkeycolumn In the output link for the group key, use a constraint of just stage variable Group...
by kcbland
Mon Jan 16, 2006 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ROW TO COL
Replies: 17
Views: 5695

A stage variable to track changes in the first column should do the trick. The only difficulty you will have is the extra output row when the change occurs. You'll need to output a row with the group value, then output the remaining data for the first row in that group as a second output row. Then, ...
by kcbland
Mon Jan 16, 2006 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: something overwriting $ORACLE_HOME in $SHLIB_PATH
Replies: 7
Views: 2081

The S99ds.rc script that starts/stops the services actually READS the dsenv file and write a temporary one used later on in the script. You may want to look thru this script and see if you can identify where the problem is occurring. You might have a syntax error or a permissions error somewhere tha...
by kcbland
Fri Jan 13, 2006 12:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters not being passed in test environment
Replies: 7
Views: 1754

What's with the "$" notation? Job parameters are referenced like this--> #yourparameter#
by kcbland
Fri Jan 13, 2006 11:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Terrible Performance due to log file
Replies: 25
Views: 8432

ORAOCI or ODBC, whichever you choose. The bulk loader is the ORABULK stage.