Search found 15603 matches

by ArndW
Tue Jun 20, 2006 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: grouping
Replies: 11
Views: 3292

The sample data you have listed is somewhat unclear - you have 3 rows with differing number of columns. A "group" in this context is normally a set of records where one column contains the same value. Is it "Col1:-" in this case? Or have you displayed only values for "Col1"? Could you explain just a...
by ArndW
Mon Jun 19, 2006 10:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Connection
Replies: 5
Views: 926

As DSGuru2B has stated, the ODBC system DSN needs to be created on the Windows DataStage server machine.
by ArndW
Mon Jun 19, 2006 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Migration from Windows Server 2003 to Unix AIX
Replies: 5
Views: 1732

In my experience the problematic portion of this cross-platform migration is in finding all the places where paths have been hard-coded in Windows format and need to be changed to UNIX. In addition, if any user-coded functions use OS calls to get information or trigger work these need to be identifi...
by ArndW
Mon Jun 19, 2006 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Connection
Replies: 5
Views: 926

Can you connect to the ODBC on B using MSQuery? If that works then the DataStage connectivity should also work. Have you tried to manually type in the ODBC DSN in the metadata import?
by ArndW
Mon Jun 19, 2006 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: paralle query
Replies: 2
Views: 1413

your colleague already posted the same question at this link
by ArndW
Mon Jun 19, 2006 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Unix/AIX environment variables
Replies: 10
Views: 2817

Executing from DS opens up a new shell, so when that exits back to DataStage the variables and their values disappear as well.
by ArndW
Mon Jun 19, 2006 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Unix/AIX environment variables
Replies: 10
Views: 2817

The datastage job is a separate process is not started with a copy of your user's environment, which is why this isn't working as you expect. You will need to explicitly set the environment variable "sbpath" in your job for this one job. If all DataStage jobs need to have this value, you can have th...
by ArndW
Mon Jun 19, 2006 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wat is the use of assigning function's value in a variable?
Replies: 2
Views: 933

If you assign the function value to the stage variable "X" and then use that variable in 20 derivations within the transform it will be much more efficient since you've only computed the function one time.

If you only use the "X" value one time then you are better off calling the function directly.
by ArndW
Mon Jun 19, 2006 4:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to view the Sequence Property in my Sequence Job.
Replies: 3
Views: 1005

Check this current thread out for more information on your probable problem.
by ArndW
Mon Jun 19, 2006 3:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job locking when looping in routine
Replies: 3
Views: 789

No problem. This particular error caused me several days of work to trace down and submit to Ascential as a bug so it is a very familiar issue to me. This call should fail immediately instead of waiting for 30 minutes on some semaphore before aborting.
by ArndW
Mon Jun 19, 2006 3:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Properties window of Sequence activity
Replies: 5
Views: 1276

I cannot supply you with detailed information. You can search this forum for more information or, alternatively, log in to the Ascential Developer Network site (you or someone in your organization should have a login ID) and search for the patch and download it as well as the description. I think th...
by ArndW
Mon Jun 19, 2006 2:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concat inserted parameter values into Arguments of Sequenc
Replies: 6
Views: 2545

In almost all cases where you can specify a parameter you can use the concatenation operator to put together constants and variables. You haven't specified exactly where and how you are doing this, so I can only answer that "yes, probably it will work".
by ArndW
Mon Jun 19, 2006 2:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Unix/AIX environment variables
Replies: 10
Views: 2817

I just noticed that you are under UNIX and not Windows. Please read up on the DSExecute() command, particularly the first parameter :wink:
by ArndW
Mon Jun 19, 2006 2:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Unix/AIX environment variables
Replies: 10
Views: 2817

Add a CALL DSLogInfo('NT Command output was "':Output:'"','') to your job to see what is happening.
by ArndW
Mon Jun 19, 2006 2:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concat inserted parameter values into Arguments of Sequenc
Replies: 6
Views: 2545

The DataStage server concatenation operator is the colon ":" character, not the plus "+" sign.