Search found 42189 matches

by chulett
Mon Apr 26, 2004 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage installation
Replies: 5
Views: 1493

Nope.
by chulett
Mon Apr 26, 2004 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing a multiple input hash file
Replies: 9
Views: 8067

Hmm... an airport lounge drive-by. Technically, your answer is that you can check any one of the input links to the hash file to accomplish the task of clearing of it. When a job starts but before any rows start to flow through it, DataStage checks for conditions of that nature in the stages - trunc...
by chulett
Sat Apr 24, 2004 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling SQL script/stored procedure from a DataStage job
Replies: 5
Views: 3835

Re: Calling SQL script/stored procedure from a DataStage job

I am trying to call a stored procedure from a Oracle 8 stage. I know it cannot be done. Actually, it can be done. It is unsupported and has several limitations, but it can be made to work. See this thread for one example. You could also execute this by wrapping a script/batch around a call to SQL*P...
by chulett
Sat Apr 24, 2004 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Please clarify follwing points
Replies: 1
Views: 719

Let's see... 1) Don't know anything about TANDEM. If there are ODBC drivers for it, preferrably wire drivers so you don't need any client software, then the answer would be yes. Otherwise... [shrug] 2) Too many variables to answer that. You'll have to let us know how long it takes on your system. 3)...
by chulett
Sat Apr 24, 2004 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create Backup Of Flat File
Replies: 9
Views: 2813

Well... I know how I'd do in on a UNIX box but I'm not sure if there are Windows equivalents to the commands I routinely use. Perhaps someone with better batch skills could help out? Typically, I would strip the extension from the filename, and then add the date stamp and the new extension during th...
by chulett
Fri Apr 23, 2004 2:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create Backup Of Flat File
Replies: 9
Views: 2813

Well, seems like you have a couple of choices: Have the batch file get the current date and use that it when it creates the copy of the file. I know how to do all of that in a UNIX korn shell script, 'fraid I can't be much help when it comes to coding it in a batch file. Have a Job Parameter with th...
by chulett
Fri Apr 23, 2004 12:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Debug a routin
Replies: 7
Views: 3628

You need to go back, edit your post and use the "Code" tags to preserve the formatting that used to be there. It's very hard to following without that. That being said, I don't see any way for your loop to end. Somewhere between the Loop and the Repeat, you need an Exit. Or add an Until or While con...
by chulett
Fri Apr 23, 2004 11:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Home Directory
Replies: 1
Views: 682

You have to put "back ticks" around the cat command:

Code: Select all

cd `cat /.dshome`
by chulett
Fri Apr 23, 2004 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: QS Plugin Issues.
Replies: 2
Views: 919

I can't really say specifically for the QS Stage (don't have it), but it is "good practice" to never link two passive stages directly together. I encourage people I mentor as a matter of course to always put a Transformer between passive stages like you mention, even if it "doesn't do anything" but ...
by chulett
Fri Apr 23, 2004 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NOT EXISTS clause in ORACLE
Replies: 1
Views: 2284

Create a Hash File lookup from the Oracle table. You'll have to stream in all the records from the AS400 and then when the lookup fails, that is the equivalent of the 'not exists' clause. There's supposed to be a new stage in 7.1 that allows you to connect to multiple database types... where's that ...
by chulett
Fri Apr 23, 2004 6:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Hashed files using UV stage
Replies: 3
Views: 1288

If your goal is to emulate the behaviour of a SQL Lookup using "between" you might want to check out this post by the ever popular Mr Kenneth Bland. It describes an alternate methodolgy to do what (I believe) you are trying to do.
by chulett
Fri Apr 23, 2004 6:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Errors Encountered
Replies: 9
Views: 3911

the Datastage version we're using does'nt support connection to Oracle 9i thru OCI stage. We're using version 5.2. I think this a limitation of the agreement between our company and Ascential. Are you sure? Have you actually tried it? In the past, I've very happily used older versions of DataStage ...
by chulett
Thu Apr 22, 2004 9:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Errors Encountered
Replies: 9
Views: 3911

Silly question perhaps, but why aren't you using the OCI stages to access Oracle?
by chulett
Thu Apr 22, 2004 4:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Licensing by CPU Count
Replies: 9
Views: 2929

A quick followup on this topic as I've gotten to a point where I need to install DataStage on a server with too many CPUs on it. Turns out DataStage will install, but you do get a Warning during the installation process that you have exceeded the license count. Everything is running rather nicely - ...
by chulett
Thu Apr 22, 2004 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage and Load Balancing Software
Replies: 4
Views: 4173

At my old company we had DataStage running under cluster control on a Compaq Tru64 Cluster. This didn't allow "load balancing" because it was only running on any one node at a time, but with shared storage it could be failed over to any other node without manual intervention.