Search found 103 matches

by arun_im4u
Wed Jan 31, 2007 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing multiple files
Replies: 11
Views: 4405

Thanks Ray. It worked fine. I modified it a little bit to serve my purpose. Didn't know what "Element" in the code means. InputArg = "cd " : pFilePath :"; ls -1 " : trim(pFilePattern) Call DSExecute("UNIX", InputArg, Output, SystemReturnCode) If SystemReturnCo...
by arun_im4u
Tue Jan 30, 2007 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing multiple files
Replies: 11
Views: 4405

I wrote a routine to make it a comma delimited file and pass it as a parameter to the start loop stage. It worked fine. But if there are many files then the routine generates a new line in the output and the job fails. *FilePath(Arg1) directory where the file exists and pFilePattern(Arg2) is the pat...
by arun_im4u
Thu Jan 25, 2007 11:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing multiple files
Replies: 11
Views: 4405

Yeah. I did look at file pattern option, but it concatenates all the files of the pattern into one and tries to process it. I would like to process one file after the other.
by arun_im4u
Thu Jan 25, 2007 10:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing multiple files
Replies: 11
Views: 4405

Processing multiple files

Hello, Which would be the best approach to process multiple files of a same pattern in a folder one after the other so that the run time logs for each file can be captured separately. I tried to use the execute command activity to capture the head file and send it as a parameter to the Job activity ...
by arun_im4u
Tue May 23, 2006 1:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 1403: update record not found
Replies: 4
Views: 2387

1403: update record not found

I am loading data into oracle via upsert and some records are being rejected into my reject file with the code -1403. What does "code -1403: update record not found" mean??? If the record already exists then i want to update it. The table is an empty table. Any help is appreciated. Arun.
by arun_im4u
Wed May 17, 2006 10:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim function - Oracle Enterprise
Replies: 3
Views: 1438

I used select trim(column name) from table in a user-defined sql from my oracle enterprise stage and it did not work. Gave me this error: Lookup_12: Error when checking operator: Key field "column name" not found in input schema main_program: Could not check all operators because of previo...
by arun_im4u
Wed May 17, 2006 9:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim function - Oracle Enterprise
Replies: 3
Views: 1438

Trim function - Oracle Enterprise

Hi,

How can I trim the columns in a user defined sql via Oracle enterprise stage?? I tried using Trim(column_name) in my user-defined sql and it did not work.

Do I have to use a transformer to trim fields??

Thanks,
AR.
by arun_im4u
Thu May 11, 2006 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle date-type column import & decimal conversion
Replies: 1
Views: 1071

Oracle date-type column import & decimal conversion

Hi, When i try to import column definitions from an oracle table using Orchestrate schema definitions it converts all the date type fields into timestamps. I have to load these columns into a numeric column in the target table. Question 1: How can I import date type column as date?? Does DS support ...
by arun_im4u
Wed Mar 01, 2006 1:58 pm
Forum: IBM QualityStage
Topic: Matching: Error parsing schema
Replies: 0
Views: 1722

Matching: Error parsing schema

Hi all, We recently migrated to AIX from Sun OS and configuring QS on the new machines. I am getting this error when I try to run a Matching job in parallel extender mode. The matching job runs fine in file mode. I also have a standardization job which I am able to run in PX mode. ##E TOSH 000289 10...
by arun_im4u
Thu Feb 02, 2006 3:08 pm
Forum: IBM QualityStage
Topic: Licensing Error: Could not find a license
Replies: 5
Views: 3622

Licensing Error: Could not find a license

Hi, I got this error when I tried to execute a standardization job in PX mode. It works fine in file mode. "Error exec: ##E TCOS 000001 15:04:09(008) <main_program> Licensing Error: Could not find a license Op Failed osh (255)" Any suggestions would be helpful, Thanks, Arun.
by arun_im4u
Thu Jan 26, 2006 1:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 plug-in : ds_loadlibrary: error in dlopen
Replies: 2
Views: 1483

DB2 plug-in : ds_loadlibrary: error in dlopen

Hi, I am getting this error "[b]ds_loadlibrary: error in dlopen[/b]"when I tried to extract data using the db2 api stage and write into a seq file. We are migrating to AIX from sun solaris and trying to setup DS on the new servers. These are some of the other errors from the same job: &quo...
by arun_im4u
Fri Jan 13, 2006 11:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters not being passed in test environment
Replies: 7
Views: 2289

If I execute the script from a routine activity, I have the same problem It works in dev and not in test. This the input argument I give to the routine activity --- '/appl/EIA/cimgate/email/XXX.ksh "$a" "$b" "$c"'---- I overwrite these parameters($a, $b,$c) during runti...
by arun_im4u
Thu Jan 12, 2006 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters not being passed in test environment
Replies: 7
Views: 2289

Ken, I clicked on the job in status view and it shows me the values I gave. But inside the Director logs it shows me the default values. If i run the exact same job in development environment and overwrite with fake values then it ends with a warning, saying that the parameters are wrong. If i run i...
by arun_im4u
Thu Jan 12, 2006 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters not being passed in test environment
Replies: 7
Views: 2289

parameters not being passed in test environment

Hi I have a simple shell script whick i execute using the execute stage. When i run the script i overwrite the parameters with values I want. When i export it to the testing environment I am not able to overwrite the parameters. It always takes the default parameter values, even if I try to overwrit...