Search found 42189 matches

by chulett
Tue Jun 07, 2005 7:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 7.5.1 stable?
Replies: 3
Views: 1976

Wow, thanks Vincent. Wasn't expecting anything quite so... complete. Some of the Client side quibbles could be rather major for us - especially the apparent change in the license tracking. Is this acknowledged as a bug? I recently had to install the MCM on my work laptop for a PX class, needing the...
by chulett
Tue Jun 07, 2005 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion
Replies: 2
Views: 1170

Is your date field reliable, guarenteed to be a valid date? If so, you could just substring it:

Code: Select all

YourDate[1,4]:'-':YourDate[5,2]:'-':YourDate[7,2]

Otherwise, you will need to use your old friends Iconv and Oconv.
by chulett
Tue Jun 07, 2005 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 7.5.1 stable?
Replies: 3
Views: 1976

7.5.1 stable?

A question for the recent upgraders out there - is the most current version of DataStage Server 'stable'? I seem to remember seeing posts here and on ADN where people were having numerous problems after upgrading to 7.5.1. I believe patches were made available to solve some (but not all?) of the is...
by chulett
Tue Jun 07, 2005 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commands
Replies: 1
Views: 792

Search the forum. You're not the first person seeking this information. For example... here.
by chulett
Tue Jun 07, 2005 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: filter commands
Replies: 4
Views: 1478

Technically, any valid UNIX command should work in the Filter. By default, you get a string (alpha numeric) sort and you have to use the -n option to force a numeric sort. This should all be spelled out in your man pages. I don't know if it's valid to use Job Parameters in the filter, I've never tri...
by chulett
Tue Jun 07, 2005 11:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: filter commands
Replies: 4
Views: 1478

The Filter can take any O/S command that handles Standard In and Standard Out well. Sort should be one of them. There is a bug in the version I am running (7.0.1) where filter commands with quotes or pipes get stripped after the first occurance. You can see this by typing a filter command in the sta...
by chulett
Tue Jun 07, 2005 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use Account Name in hash file
Replies: 9
Views: 3270

Also how does it assist in migration of code across projects? Pretty obvious, if you ponder it for a bit. Since leaving it blank equates to the current project the job is running in, this means you can move the job from development to test to production without having to touch the Account Name the ...
by chulett
Tue Jun 07, 2005 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update tabla through Oracle Stage
Replies: 11
Views: 3323

I have this requirement where I have a column named rowid_id which holds the value of rowid of the record. This is a... strange... requirement. I have no idea what value you would bring to the table by pulling the ROWID out into a data field. However, it can be done. Keep in mind the fact that ROWI...
by chulett
Tue Jun 07, 2005 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row Merger Question
Replies: 3
Views: 900

Um, what? You might want to try asking again. :?
by chulett
Mon Jun 06, 2005 8:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compiler or Interpreter?
Replies: 10
Views: 3184

The compiled code from a server job is not executable by the native machine; rather it is executed in a 'virtual machine' called the DataStage Run Machine. This assists in platform portability, and explains why you can't install an AIX DataStage on an HP-UX machine; the Run Machine is different. It...
by chulett
Mon Jun 06, 2005 8:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Steps to upload DataStage client on WProf
Replies: 2
Views: 847

As long as 'upload' means 'install', it's all spelled out in the readme file that ships with the product. Between that and the Installation and Upgrade Guide you've got everything you might need to know about installing the client software. Besides, there's not much more to it than making sure you'...
by chulett
Mon Jun 06, 2005 8:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Test for empty hashed file
Replies: 5
Views: 1885

As long as the hash file is in an 'Account' or you've established your own VOC record for it. For an unadulterated Pathed Hash you can't count it like that. I'd be curious to learn what the 'certain logic' is you'd need to do if the hash file is empty. I've never had a need to worry about this in al...
by chulett
Mon Jun 06, 2005 8:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSP.Open Error writing to Oracle - again.
Replies: 15
Views: 5935

Re: DSP.Open Error writing to Oracle - again.

I have DataStage 7.5 on a Windows 2000 box with Oracle 9.i client. Connecting to an Oracle 8.1.7 database on a Unix box. Just for the record, I'd be curious what exact version of the 9i Client you have installed on the DS Server. I'd also be curious about the possibility of installing an 8i Client ...
by chulett
Mon Jun 06, 2005 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi Instance Job
Replies: 7
Views: 1559

And just to finish beating this little horsey...

If you are running the job outside of the GUI (via 'dsjob' for instance) supply the Invocation ID as a 'dot seperated' value after the job name. For example, run 'Jobname.ID' rather than 'Jobname'.
by chulett
Mon Jun 06, 2005 6:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determine whether to use condition in SQL based on parameter
Replies: 12
Views: 3584

Just make sure your ToDate parameter data type in the DS job is String, because Date has a required value at runtime. Ken makes a good point about the usefullness of the CASE statement, so you could go that way if you are comfortable with that syntax. Only wanted to point out what I quoted. I've do...