Search found 15603 matches

by ArndW
Wed Oct 06, 2010 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date compasion in Datastage
Replies: 1
Views: 5982

1. Yes
2. Yes. Note that syntax should be " link.datecolumn1 <= link.datecolumn2 "

DataStage will perform implicit conversion of "link.datecolumn" to date type in the first case.
by ArndW
Wed Oct 06, 2010 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: VIEWDATA ROW LIMITER HIT Error when query return no rows
Replies: 2
Views: 2563

There might be more involved here as well, since MKS Toolkit requires that named pipes must be located at "$ROOTDIR/fifos", where the rootdir is the installation directory, usually "c:\Progra~1\MKS Toolkit\"
by ArndW
Wed Oct 06, 2010 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Login issue
Replies: 6
Views: 2843

Do you have several projects? If so, try to login with your id in another project and see if the error message persists. I am not at a DataStage system right now to check, but there must be hashed file where the session information is written and you most likely don't have UNIX write permissions to ...
by ArndW
Wed Oct 06, 2010 5:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Steps to take Fact load
Replies: 4
Views: 1579

1. "Performance should be good". This topic is far too complex to discuss in a single thread. It depends upon so many different factors ranging from performance expectations (e.g. I have a window of 3 hours to load my data and it must finish within that time) to database SQL optimization w...
by ArndW
Wed Oct 06, 2010 3:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Login issue
Replies: 6
Views: 2843

Can you confirm if this is a version 7 or version 8 installation? Can you login to the director and administrator?
by ArndW
Wed Oct 06, 2010 2:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using FTP Enterprise stage for ftp'ing files
Replies: 6
Views: 2343

No, that is not what Ray or I said. As written earlier, you transfer data to your DataStage job via the FTP stage then write a file from the job.
by ArndW
Tue Oct 05, 2010 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using FTP Enterprise stage for ftp'ing files
Replies: 6
Views: 2343

Use a dummy schema. You can declare the file to be FTP'd as having one column with fixed length and no line terminators. Write what you've transferred with same settings into a file and you've completed, in a very roundabout way compared with a straight binary FTP command-line, a binary FTP from Dat...
by ArndW
Tue Oct 05, 2010 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aborting a job
Replies: 11
Views: 2844

Go into your Programs -> IBM Information Server -> Documentation and, from the list, choose your appropriate language for "Programmer's Guide" in the "Websphere DataStage" section.
by ArndW
Tue Oct 05, 2010 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Export of Datastage job from command prompt
Replies: 13
Views: 14191

In your on-line help guide open up the Designer Client Guide to Chapter 11, page 187 and you will find that it uses the following syntax:

dsexport.exe /D domain /H hostname /U username /P password /JOB jobname /XML /EXT /EXEC /APPEND project pathname1
by ArndW
Tue Oct 05, 2010 2:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: zero not to be truncated
Replies: 6
Views: 3316

Your target is an integer column and thus, by definition, does not have leading zeros. If you want leading zeroes on displaying an integer column you will need to declare to the output format accordingly.
by ArndW
Tue Oct 05, 2010 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: surrogate key generator stage
Replies: 1
Views: 1089

1. Yes
2. Unless you choose a block size of 1 and also commit your output every records, you cannot guarantee that there won't be an gaps. Neither of these two options is generally acceptable in production for performance reasons.
by ArndW
Tue Oct 05, 2010 2:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passeing value to $APT_CONFIG_FILE at run time
Replies: 3
Views: 1551

Generally it is best practice to include the $APT_CONFIG_FILE parameter in all PX jobs and keep the setting at "PROJDEF", this allows you to change either the project default to affect all jobs or to specifically target those jobs that need or require different configuration file settings.
by ArndW
Tue Oct 05, 2010 2:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Problem - Incorrect syntax near....
Replies: 11
Views: 5804

Could the error be something as banal as the single "#" character being misinterpreted? Does the error go away when you remove the "#" (even if no rows are returned)?
by ArndW
Mon Oct 04, 2010 8:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running state
Replies: 9
Views: 2501

Could you narrow down the "some transformations and some stages" part, since that is most likely where your error is happening. Make a copy of your job with just the input stages and put in dummy output stages (sequential files going to "/dev/null") and see if the job hangs. If n...
by ArndW
Mon Oct 04, 2010 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aborting a job
Replies: 11
Views: 2844

At Version 8 look into the "Programmer's Guide" to find those routines documented.