Search found 42189 matches

by chulett
Thu Dec 16, 2004 12:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleaning out Director log entries
Replies: 16
Views: 5929

You might want to read through this earlier thread where someone else had a similar dilemma. They came to the conclusion (after working with Ascential Support) that it simply wasn't possible to do what they wanted. I'm afraid you may be in the same boat. :?
by chulett
Wed Dec 15, 2004 11:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: uv, uvsh and dssh commands not working in DS 7.0
Replies: 10
Views: 4837

SHLIB_PATH is correct for HP/UX, it's what we run here. You need to make a small correction to your settings as you seem to have the classic problem of pointing to the 64bit Oracle libraries rather than the 32bit libraries first. Try it like this: SHLIB_PATH=`dirname $DSHOME`/branded_odbc/lib: $DSHO...
by chulett
Wed Dec 15, 2004 9:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: the number of records
Replies: 7
Views: 2092

No, DSExecute is a DataStage function that can be used to run operating system commands, amongst other things. You are going to need to be a little more specific so we can help. You marked your Server platform as "UNIX" in your first post but also just said that "data stage is in windows environment...
by chulett
Wed Dec 15, 2004 6:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: the number of records
Replies: 7
Views: 2092

Re: the number of records

if the number of records in a file is less than zero then my further sequence should stop from running. You might want to restate that requirement. How about a simple "wc -l" command? That would return the number of records in a file and you could then make decisions based on that. Your routine cou...
by chulett
Wed Dec 15, 2004 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: &PH& jobnotify error 911
Replies: 8
Views: 2329

True on any UNIX server... the trailing & means you want to run your command in the background. Escape them and you'll be ok:

Code: Select all

cd \&PH\&
by chulett
Wed Dec 15, 2004 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file size
Replies: 6
Views: 3392

Also, if you have a tool like TOAD, it can compute the Average Record Length for you - either based on the metadata, or (more accurately) by scanning the contents of the table.
by chulett
Wed Dec 15, 2004 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join Stage Design Question
Replies: 1
Views: 756

PX questions should really be over in the "Enterprise Edition" forum, that's where the PX gurus hang out and play. :wink:
by chulett
Wed Dec 15, 2004 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Version-Control in V7.5
Replies: 3
Views: 1195

Do i must creat a new Version project ? No, but you can create a new version project if desired (with a different name) and see if a clean one works better. Version Control does support having more than one VC repository at the same time, btw. Or do i must export all components of the old VERSION p...
by chulett
Wed Dec 15, 2004 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Missing parameter values when migrating
Replies: 5
Views: 2555

It shouldn't be an issue with a VC move, but I believe it can be when using export/import if the 'include defaulted properties' (or some such) is not checked. :?
by chulett
Wed Dec 15, 2004 8:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we use hash files created in 6.1 in 70
Replies: 3
Views: 1406

The basic answer is 'yes'. Definitely on the 'can we use hash files created in 6' question, they haven't changed and are directly usuable. On the question of moving them, again a yes with a caveat or two. If they were created with the 'pathed' option (ie, not in an account) then yes, simply move the...
by chulett
Wed Dec 15, 2004 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling PL/SQL procedure from a Data Stage job
Replies: 5
Views: 5324

You can't... if the procedure is doing all of the work, you'll need to have the procedure capture and log its own stats. DataStage won't have a clue what it did.
by chulett
Wed Dec 15, 2004 8:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: uv, uvsh and dssh commands not working in DS 7.0
Replies: 10
Views: 4837

It does use dld - the Dynamic Loader. And dld is what is complaining that it can't find a shared libarary to load.

I'd do a search for that missing .sl file and add where it lives to your Shard Library path in dsenv, bounce DataStage, and see if that helps.
by chulett
Wed Dec 15, 2004 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Missing parameter values when migrating
Replies: 5
Views: 2555

How are you moving them?
by chulett
Tue Dec 14, 2004 4:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: First line is column names in Input Tab
Replies: 4
Views: 734

Actually, in a way, both are correct... 1) True when reading a sequential file with the option checked... even if the first record isn't column headings! 2) True when writing to a sequential file with the option checked and the file either doesn't exist or is being overwritten. If you are appending ...
by chulett
Tue Dec 14, 2004 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Documentation of the Jobs and Sequences
Replies: 4
Views: 1988

There is a routine available over in the File Library on the ADN website called JobReport that will do that for you.

Or if you have 7.5, that functionality should be included, I do believe.