Search found 15603 matches

by ArndW
Wed Jun 06, 2007 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Steps/Command to know installed software in UNIX
Replies: 3
Views: 713

Good job - some of those I hadn't heard of before! But remember that these will not be exhaustive lists of all installed software
by ArndW
Wed Jun 06, 2007 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A challenging logic
Replies: 8
Views: 2117

This is an interesting problem. I cannot see a truly elegant solution that would cater for n columns, my initial thought is to use a transform stage with IF-THEN-ELSE constructs that explicitly assign the input columns to the output value.
by ArndW
Wed Jun 06, 2007 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: share string comparison
Replies: 1
Views: 612

Doesn't that mean that your function return value is also quoted, so it would make more sense to remove the extra quotes in your program so it doesn't get passed to the stage variable in the first place?
by ArndW
Wed Jun 06, 2007 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset Warnings..
Replies: 5
Views: 1535

Can you pass it a parameter with the file name or at least of a file that does exist?
by ArndW
Wed Jun 06, 2007 1:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage software dump
Replies: 1
Views: 741

MyWeb - please only post one question in one forum, most people here will read through all new posts or forums so duplicating post is unnecessary.
by ArndW
Wed Jun 06, 2007 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Steps/Command to know installed software in UNIX
Replies: 3
Views: 713

There is no command in UNIX that will directly tell you that. Many applications or packages are just copied into and run from a certain directory so there is no central "registration" done. There might be a way to display certain types of software, but that does depend upon which UNIX type and versi...
by ArndW
Wed Jun 06, 2007 12:57 am
Forum: General
Topic: How to Remove Duplicates?
Replies: 14
Views: 5319

Ray - because the poster also wants to remove the original row as well if duplicates exist.
by ArndW
Wed Jun 06, 2007 12:56 am
Forum: General
Topic: DataStage software
Replies: 3
Views: 1275

The only way to get a "free" copy is to contact your local IBM/Ascential office and ask if you might get a demo license. Your chances are not very good, but it might be worth a try.
by ArndW
Wed Jun 06, 2007 12:55 am
Forum: Site/Forum
Topic: update stratagies
Replies: 4
Views: 2903

Welcome to DSXchange, kishoresfw. If you can narrow down your questions you will find that you will get much better answers. It also helps to post queries in the appropriate area. This area is for discussions about the site itself and is not meant for technical questions. The concept of an "update s...
by ArndW
Tue Jun 05, 2007 9:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing input 1 row as multiple rows to the target db
Replies: 9
Views: 2958

csrazdan - I answered the question he posted, there is no mention of a key column made. If there were a key column and a 1-n relationship I would still use the same base method, but write out 2 columns with the key repeating. The derivation for the output file would be: CONVERT(CATS(REUSE(In.Key):',...
by ArndW
Tue Jun 05, 2007 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Escape Character in ExecSH Routine Activity Sequence Job
Replies: 2
Views: 1863

Try something along the lines of
'echo "EXEC DBMS_STATS.gather_table_stats\(' : DEST_US : ',' : DEST_TBL : '\)" | sqlplus
by ArndW
Tue Jun 05, 2007 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing input 1 row as multiple rows to the target db
Replies: 9
Views: 2958

I kept my first post short enough that I thought it would show in its entirety. Just write your column to a file and use spaces as your line terminators, then read that file using space as a terminator. That way, DS will read each word from your original column as a separate line.
by ArndW
Tue Jun 05, 2007 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset Warnings..
Replies: 5
Views: 1535

The reset normally doesn't need the sequential file to exist, it sounds more like you are doing a validate. What is your UNIX dsjob call to do this?

This thread does not belong in the FAQ, but in either the server or PX forum.
by ArndW
Tue Jun 05, 2007 3:32 pm
Forum: General
Topic: Unable to view the job activity properties in a seq
Replies: 1
Views: 883

Most likely you need a patch from IBM. Check up on ecase 60128 or the dsclient_xpsp2 patch.
by ArndW
Tue Jun 05, 2007 3:25 pm
Forum: General
Topic: How to Remove Duplicates?
Replies: 14
Views: 5319

I think Maveric suggested a good solution. The question shouldn't have been "how to remove duplicates", since the goal is to remove duplicate rows as well as the original row if it has duplicates, which is a more complex operation.