Search found 15603 matches

by ArndW
Thu Mar 27, 2008 9:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pass multiple parameters to routine activity stage
Replies: 4
Views: 1545

Oh, and please don't duplicate posts!
by ArndW
Thu Mar 27, 2008 9:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass parameters to unix script in routine activity stage
Replies: 6
Views: 2018

What routine are you calling and how many parameters does it have?
by ArndW
Thu Mar 27, 2008 9:05 am
Forum: General
Topic: 39125 error-Not a UV account
Replies: 8
Views: 5087

mini - welcome to DSXchange. Please don't use "urgent" in that context, this site is not a replacement for a service contract but is to be used as an adjunct. If you enter your account, userid and password in the client tool, then click on the drop-down box for the project do you get a list or an er...
by ArndW
Thu Mar 27, 2008 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting input rows (Unknown rec count)
Replies: 2
Views: 953

I would use the UNIX command "split" to do this.
by ArndW
Thu Mar 27, 2008 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: imported dsx file between two datastage looks corrupted
Replies: 2
Views: 1087

Re: imported dsx file between two datastage looks corrupted

adesanyaa wrote:...but was having problems to export and import between the two environments...

Unless you tell us what problems you actually had it is going to be impossible to assist.
by ArndW
Thu Mar 27, 2008 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when using Transformer stage
Replies: 7
Views: 4870

Re: Error when using Transformer stage

BalageBaju wrote:##W TBLD 000000 10:16:02(011) <main_program> Error when checking composite operator: Output from subprocess: cxx: file 'C:/PROGRA~1/MKSTOO~1/etc/cxx.ccg': The system cannot find the file specified.

Looks like a missing or incorrectly set up C++ compiler.
by ArndW
Thu Mar 27, 2008 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: value formatting
Replies: 2
Views: 952

The Server edition has a set of powerful functions, OCONV and ICONV that, among other things, converts all sorts of date formats. I would use the @DATE function to get the current date, then convert using something like OCONV(@DATE,"D4/YMD") to get today's date as YYYY/MM/DD
by ArndW
Thu Mar 27, 2008 6:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversation
Replies: 12
Views: 2831

Actually, %MMM means that the month is in 3 digit text format (i.e. "JAN","FEB")
by ArndW
Thu Mar 27, 2008 4:45 am
Forum: General
Topic: project creation
Replies: 6
Views: 1734

These are SQL queries on the DataStage engine, done either throught the TCL or from the command line utility in the Administrator.
by ArndW
Thu Mar 27, 2008 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversation
Replies: 12
Views: 2831

the format string has to match exactly, if you are doing an implicit conversion of month 2 to a string you get '2', which isn't the format '02' which the conversion requires. I don't thnk that the builtin conversions put leading zeroes in and don't have the docs handy to check. But do something like...
by ArndW
Thu Mar 27, 2008 2:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: split by month
Replies: 4
Views: 931

Could you be kind enough to tell us what the error is?
by ArndW
Wed Mar 26, 2008 12:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Spaces- What option to use?
Replies: 4
Views: 1213

No, that isn't always teh case. But here your are trimming the amount of data transferred from the DB to DataStage and thus probably speed things up. The "Trim" is going to take about the same amount of time on both ends.
by ArndW
Wed Mar 26, 2008 11:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Copying the folder projects of Datasatge 8
Replies: 5
Views: 1528

Rename the folder projects. Create empty projects and then copy the contents of the renamed projects into those directories. NB This simplified approach will only work correctly if the absolute paths are identical on the old and the new machines.
by ArndW
Wed Mar 26, 2008 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CLI to check or validate the seq/job in datastage
Replies: 3
Views: 897

"dsjob -jobinfo {project]} {job}", then parse the "Job Status" out for the main sequence. Always use the "reset if required" option in the Job Activity stage when starting jobs from sequences.
by ArndW
Wed Mar 26, 2008 8:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running the jobs in sequence and looping upto certain time
Replies: 4
Views: 1155

There are many ways to do this. Create a job sequence that is called from the scheduler that loops to call the job; it checks the time and once past 6am it exits the loop and stops. Or you can schedule the job to run every 5 minutes in the scheduler (assuming it runs < 5 minutes) between the 3am and...