Search found 15603 matches

by ArndW
Wed May 28, 2008 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log Path to see the Job LOG - not thru Director!!!
Replies: 11
Views: 2280

"dsjob -log" inserts a record into the log, you are looking for "dsjob -logsum"
by ArndW
Wed May 28, 2008 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log Path to see the Job LOG - not thru Director!!!
Replies: 11
Views: 2280

The "dsjob" command is the same on Windows and UNIX. It can be called from either the server or the client.
by ArndW
Wed May 28, 2008 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion problem with the blank data
Replies: 3
Views: 987

Re: Date conversion problem with the blank data

'' is not a valid date, try
dodda wrote:if Trim(Out_MAI21.Suppdate)='' then StringToDate('19000101',"%yyyy%mm%dd") else StringToDate(Out_MAI21.Suppdate,"%yyyy%mm%dd")
by ArndW
Wed May 28, 2008 6:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find out if a certain stagetype is used in a project
Replies: 9
Views: 2930

Craig - good point, I must have been in "consultant" mode (the mantra is "Billable Hours....Billable Hours...") :wink:
by ArndW
Wed May 28, 2008 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create Dynamic files
Replies: 9
Views: 1753

It doesn't allow you to create these two file types in the hashed file stage. The forum contains numerous descriptions of how you can create your own files, i.e. "CREATE.FILE MYFILE 10" from the TCL command line.

In this example the key would be COUNTRY.
by ArndW
Wed May 28, 2008 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error
Replies: 3
Views: 1042

c++ compiler is missing or not installed correctly.
by ArndW
Wed May 28, 2008 4:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How To align Components in data stage server.
Replies: 2
Views: 3658

Common methods that I use are vertical and horizontal alignment methods in the designer.

hint - if you specify your question more precisely, you will probably get an answer you can use :)
by ArndW
Wed May 28, 2008 3:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Create Dynamic files
Replies: 9
Views: 1753

I am not sure where you are looking, but type 1 and 19 files exist; both are directory types but type 1 has a limited filename/key length and shouldn't be used.
by ArndW
Wed May 28, 2008 3:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage version
Replies: 1
Views: 608

cetzhbo - this is a volunteer site and not affiliated with IBM. You can search the IBM site for 7.5, 7.5.1, 7.5.2, 7.5.3, 7.5x2, 8.0, 8.0.1 and get the details of what differences there are. In addition, the readme files on your media document all the patches and fixes and changes from previous vers...
by ArndW
Wed May 28, 2008 3:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSjob command issue
Replies: 3
Views: 1147

You need to execute the "dsenv" file in $DSHOME in order to completely set up your paths and libararies
by ArndW
Wed May 28, 2008 3:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join problem
Replies: 2
Views: 723

No, the "&" should have no effect on this. How are you doing the join - do you have any custom SQL involved?
by ArndW
Wed May 28, 2008 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in Multiple Instance
Replies: 9
Views: 2931

Why not use the sequence invocation id value as part of the job invocation id, that way it would generate unique values. You can get the invocation id of the sequence inside the sequence using the DSJobInvocationId macro.
by ArndW
Wed May 28, 2008 1:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find out if a certain stagetype is used in a project
Replies: 9
Views: 2930

Export all your projects to .dsx files, then write a DataStage program to search these files for the tags found only in the Oracle Bulk Loader.
by ArndW
Wed May 28, 2008 1:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: shell script to login to the project
Replies: 12
Views: 6336

The problem is that the DS shell isn't getting it's input from the script. The easiest solution would be for you to skip the LOGTO by doing a CD to the project directory in the shell script, then use

Code: Select all

dssh "{command}"
to issue single commands that exit back out of the shell
by ArndW
Wed May 28, 2008 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataCompress in DataStage
Replies: 4
Views: 2326

DataStage Server has no builtin compression functionality, but you can always shell out and execute UNIX or Windows commands such as gzip, compress or the command-line version of WinZip or WinRar or pkzip to mention just a few