Search found 53125 matches

by ray.wurlod
Mon Mar 08, 2010 10:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Stage
Replies: 3
Views: 1735

What is the data type of Value_Col? In particular check the extended properties and inform us whether it is of type uint (unsigned integer).
by ray.wurlod
Mon Mar 08, 2010 10:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.UVOpen mkdbfile: cannot create file...
Replies: 3
Views: 4122

Check access to the project's VOC file. This needs to be writable if you are creating a hashed file using a UV stage or using a Hashed File stage and specifying "account" as the location.
by ray.wurlod
Mon Mar 08, 2010 5:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing to AIX sequential files and DB2 concurrently
Replies: 5
Views: 1954

No, process it once only into a staging area (Data Set). Then read from there with separate load jobs. The sequence could then also report on the success or failure of each of these.
by ray.wurlod
Mon Mar 08, 2010 4:52 pm
Forum: General
Topic: How to delete readonly routines
Replies: 11
Views: 4617

Can you please mark the thread as Resolved using the green button at top?
by ray.wurlod
Mon Mar 08, 2010 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stable sort option in sort stage
Replies: 6
Views: 12359

The Stable Sort check box allows one to assert that the sort specified on the input link is (or is not) to be a stable sort.
by ray.wurlod
Mon Mar 08, 2010 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: acceessing Mainframe DB2 database by using DB2 stage
Replies: 5
Views: 1861

That's basically the correct answer. The DB2/UDB Enterprise stage only supports DB2 on the same platform type. If you want to go to AS/400 or mainframe you need the DB2 API stage (which is why it still exists in parallel jobs). In version 8.1 the DB2 Connector stage allegedly works to other platform...
by ray.wurlod
Mon Mar 08, 2010 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Changing Meta Data File Format To The Schema File Format
Replies: 1
Views: 1244

Thank you for sharing that, whatever it means.
by ray.wurlod
Mon Mar 08, 2010 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can I read all three formats from the same sequential fi
Replies: 1
Views: 1225

Parallel job (as marked) or server job (as posted)? Probably the easiest way to do this is to read the file using a single field (data type VarChar) with a Transformer stage executing in sequential mode. The Transformer stage has three outputs with constraints based on the system variable @INROWNUM....
by ray.wurlod
Mon Mar 08, 2010 3:06 am
Forum: General
Topic: to get job names of a category through unix command
Replies: 5
Views: 3365

Usually categories are delimited by backslash, so you might need either to specify the argument with backslashes or, within your script, translate forward slashes to backslashes. For example category=$1 catpath=`echo $category | tr \/ \\` The command has to be executed while attached to a project di...
by ray.wurlod
Mon Mar 08, 2010 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config two nodes in single CPU
Replies: 7
Views: 2145

Performance - whatever you mean by it - is a simple supply and demand equation. You can run as many nodes as you like if each of them is doing hardly anything. But you can only run a tiny number of jobs that demand huge resources. A parallel job will create approximately N * (M + 1) + 1 processes, w...
by ray.wurlod
Mon Mar 08, 2010 1:49 am
Forum: General
Topic: to get job names of a category through unix command
Replies: 5
Views: 3365

Do you mind if your UNIX command invokes a database query? Because you are going to need a database query to determine the category contents.
by ray.wurlod
Mon Mar 08, 2010 1:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with DSN creation
Replies: 4
Views: 2332

Create an entry in the uvodbc.config file in your project directory if you want to limit that project to a subset of the available DSNs.

Use the test facilities in branded_odbc to check your work. Then use DS.CONNECT within dssh to test whether DataStage can use the DSN.
by ray.wurlod
Sun Mar 07, 2010 11:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: May I know how can I change " to ' char for my DSJ SQL?
Replies: 5
Views: 1412

For whatever database your driver is for, yes. For other sources you may get a different character. For example Microsoft Access returns a backquote into this field. Whatever Get SQLInfo returns is guaranteed to work.
by ray.wurlod
Sun Mar 07, 2010 11:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I backup DataStage jobs?
Replies: 4
Views: 2278

Please choose more meaningful subjects. No-one searching in future for help on backing up will even bother to look at this thread. My preferred method for backing up the design elements in a project is to take an export of the whole project, which ends up on my client machine, and allows easy parti...
by ray.wurlod
Sun Mar 07, 2010 10:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: May I know how can I change " to ' char for my DSJ SQL?
Replies: 5
Views: 1412

There's a button captioned "Get SQLInfo" on the stage properties page. It will retrieve the correct syntax from the database server or ODBC driver. If you use generated SQL, that's all you need do. If you're using user-defined SQL, then it's all up to you.