Search found 53125 matches

by ray.wurlod
Mon Jan 04, 2010 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataaStage User roles and groups
Replies: 2
Views: 1332

Being a (the) DataStage Administrator overrides any role settings within the project. After all, the DataStage Administrator could change those roles at any time. Therefore even assigning NONE as the DataStage role will not prevent dsadm from doing anything in the project.
by ray.wurlod
Mon Jan 04, 2010 6:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wwhat is OperatorLogic error
Replies: 2
Views: 879

When a parallel job runs, each process executes an instance of a particular class. These can be seen in the score as operators.

If there is a programming fault (yours or theirs) in the code that an operator executes, it will typically be reported as an operator logic error.
by ray.wurlod
Mon Jan 04, 2010 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import error in performing a job
Replies: 5
Views: 2938

Please mark this thread as Resolved using the green button at top.
by ray.wurlod
Mon Jan 04, 2010 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter - String data type
Replies: 7
Views: 1886

That is because, of course, "" is not a valid Date or Integer value.
by ray.wurlod
Mon Jan 04, 2010 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage 8.1 Client Information
Replies: 4
Views: 2451

Please be more specific about what you mean by "pack". Are you asking about fix packs, or something else (maybe installation software)? Are you receiving your software on DVD or via download?
by ray.wurlod
Mon Jan 04, 2010 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable number of parameters when calling a routine
Replies: 2
Views: 1278

Please mark this thread as Resolved using the green button at top.
by ray.wurlod
Mon Jan 04, 2010 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to start Web Console for IBM Information Server
Replies: 8
Views: 11416

Please mark this thread as Resolved using the green button at top.
by ray.wurlod
Mon Jan 04, 2010 4:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Look Up for Not equal to Condition
Replies: 6
Views: 3618

Please mark this thread as Resolved using the green button at top.
by ray.wurlod
Sun Jan 03, 2010 6:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import error in performing a job
Replies: 5
Views: 2938

Change the Record Delimiter property (UNIX style) to the Record Delimiter String property (DOS style).
by ray.wurlod
Sun Jan 03, 2010 6:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Realtime data integration using replication server and DS
Replies: 4
Views: 2433

You can have "always running" DataStage jobs that receive the pushed data. Get onto the latest, "wave aware", version.
by ray.wurlod
Sun Jan 03, 2010 12:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduled Jobs Missing
Replies: 5
Views: 2046

That information is out of date. With version 8 Information Server does have its own, in-built scheduling service and DataStage leverages that.
by ray.wurlod
Sun Jan 03, 2010 12:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hi, I am with a litlle problem and I would like your help.
Replies: 3
Views: 1736

There is a limit on the length of an expression. Try breaking it down into smaller expressions in stage variables, and concatenating these.
by ray.wurlod
Sun Jan 03, 2010 2:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to connect datastage job with other server.
Replies: 6
Views: 1441

Is the other server visible? That is, is the directory where the file to be transferred mounted (or mountable) on the DataStage server? If so, you can access it directly. If not use FTP - either a script to transfer the file or an FTP stage to transfer its data.
by ray.wurlod
Sat Jan 02, 2010 6:18 am
Forum: General
Topic: Restricting group Users to limited concurrent sessions?
Replies: 3
Views: 1068

A BASIC routine invoked from the LOGIN paragraph. You would need to verify that it was a client connection, by checking that the value of the @TTY system variable is either "uvcs" or "dscs", and providing persistent recording of the existitence of a client connection. You would a...
by ray.wurlod
Fri Jan 01, 2010 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup warning on null
Replies: 9
Views: 10211

All fields from the reference input must be nullable because all fields will be set to null if the lookup fails. The lookup key from the stream input should also be (made) nullable because it has to map to the lookup key on the reference input. Any output fields derived from the reference input must...