Search found 153 matches

by battaliou
Wed Jul 09, 2014 6:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log Information
Replies: 5
Views: 3816

Don't worry about it, your loads are working fine, the timestamp on the log entry for your default config file is a little misleading as the message is generated (flushed) at the same time as the job completes. Test it with 1000 rows and you will see what I mean. As a matter of interest can you post...
by battaliou
Sun Apr 20, 2014 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot read osh phantom output
Replies: 6
Views: 6665

I got the same error this morning. I was running 8 way multi-process, and all 8 came up with the warning as the last event in the log file. The data loaded ok, but my sequence failed as it did not get a "Executed OK" return. DS 8.1.0.0 no patches on SunOS 5.10. Scratch and Swap space fine....
by battaliou
Wed Jan 22, 2014 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stage variable question
Replies: 5
Views: 3126

I am reading this as follows:
IF (Input_Lnk.Parent_code= Input_Link.child_code) THEN Input_Lnk.CHILD_SK ELSE 1
by battaliou
Wed Jan 22, 2014 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About tsort operator on sorted data
Replies: 7
Views: 8816

This would appear to be the case. Insert into the job the APT_NO_SORT_INSERTION environment variable as "TRUE", and try again.
by battaliou
Wed Jul 17, 2013 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wild Card - Get File Name
Replies: 19
Views: 14064

I had the same issue "RC_DATA: Unable to generate a node map from fileset /ods_stage/TEMP/import_tmp_27228b937c2d4.fs." I simply deleted my sequential file stage and created a new one with the same settings, and now the job works. Thanks a lot James for the tip on $APT_IMPORT_PATTERN_USES_...
by battaliou
Wed Nov 21, 2012 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning
Replies: 3
Views: 1510

In the Sequential file stage set your Source File to /dev/null and add a Filter with the following:

sort debug.txt

If you need to remove the header then:
sort debug.txt sed '$d'
by battaliou
Wed Nov 21, 2012 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting warning message in sequential file stage
Replies: 4
Views: 2999

In the Sequential file stage set your Source File to /dev/null and add a Filter with the following:

sort debug.txt

If you need to remove the header then:
sort debug.txt sed '$d'
by battaliou
Mon Oct 15, 2012 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create a TXT File with Row Value
Replies: 5
Views: 2366

A Server job will allow you to create a type 1 hashed file which would have the properties you require.
by battaliou
Thu Sep 20, 2012 4:50 am
Forum: General
Topic: MD5 Encryption using Datastage 7.5
Replies: 4
Views: 4702

You could use PERL, as this is probably available on your DS server.

Code: Select all

use strict;
use Digest::MD5  qw(md5_hex);
my $md5_data = "martin";
my $md5_hash = md5_hex( $md5_data );
print "$md5_hash\n";
by battaliou
Mon Jul 09, 2012 2:12 pm
Forum: General
Topic: Shell script takes longer execution time in DS than prompt
Replies: 8
Views: 3768

Include a pwd in your script to prove you are in the right directory when you run script from DS.
by battaliou
Mon Jul 09, 2012 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_ParallelSortMergeOperator : Unbalanced input
Replies: 12
Views: 6364

Is your remove duplicate key the same as your join key?
by battaliou
Fri Jun 29, 2012 2:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parsing Source File
Replies: 6
Views: 4010

If you use venkateshrupineni solution then you can have two output's from your transformer into a funnel with a contraint on the 2nd output based on whether sv4<>''
by battaliou
Tue Mar 27, 2012 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loading float value
Replies: 9
Views: 5790

Did you fix this error? We had the same problem using decimals, as our TD supports a maximum of decimal(18) so when we had to populate a 38,2 we simply defined it as an 18,2 in DS.
by battaliou
Mon Mar 12, 2012 11:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: script to process a file
Replies: 15
Views: 4702

Take a look at the UNIX tr -s '\n\' ',' command.
by battaliou
Wed Jan 11, 2012 3:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Which DB used for ORCH_WORK table
Replies: 5
Views: 5176

We are currently specifying this under DB options in the TD EE stage: user=#TRG_DB_USERID#,password='#TRG_DB_PASS#',SessionsPerPlayer=1,RequestedSessions=5,WORKDB=#TRG_DB_NAME#