Search found 53125 matches

by ray.wurlod
Tue Jul 13, 2010 1:21 am
Forum: General
Topic: dsjob command
Replies: 3
Views: 1924

Not obvious but possible. You first need a query to determine which jobs are in a particular folder, then construct a looping script based on this list to run the jobs. If you already have the list of jobs, then the list can be hard coded. Row counts can be had from the -stageinfo option of dsjob, i...
by ray.wurlod
Tue Jul 13, 2010 1:16 am
Forum: Enhancement Wish List
Topic: Information Analyzer: Output directly to user-defined tables
Replies: 5
Views: 11044

:lol:
If you find IADB cryptic you ain't looked at XMETA yet!!!
by ray.wurlod
Mon Jul 12, 2010 10:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Pop up not coming in parallel DataStage.
Replies: 6
Views: 3104

Have a DataStage Administrator check your DataStage roles. If you only have Operator or Super Operator role you will not be able to compile.
by ray.wurlod
Mon Jul 12, 2010 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: English / French decimal separator issue
Replies: 16
Views: 6898

Those uvconfig entries aren't in place if NLS is not installed. Enabled is, of course, a different question, answered by checking the current value of NLSMODE.
by ray.wurlod
Mon Jul 12, 2010 10:31 pm
Forum: General
Topic: how to check date before job running
Replies: 6
Views: 1578

The expression you mentioned seems to be relying on the ordinal position of the day in the week, that is day #4. You can generate expressions that return the day name (Oconv(@DATE,"DWA")) or day name abbreviation (Oconv(@DATE,"DWB")) or day number in week (Oconv(@DATE, "DD&q...
by ray.wurlod
Mon Jul 12, 2010 10:27 pm
Forum: IBM QualityStage
Topic: Error RT_QS347_compile
Replies: 3
Views: 1678

Are you the first to compile this job in this project? What permissions do you have to the project directory? What permissions do you have to the object named in the error message on the engine?
by ray.wurlod
Mon Jul 12, 2010 10:25 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: deploy a service
Replies: 6
Views: 3678

suryadev wrote:I am using 8.0.1 so I guess there is no manager....
There IS an Information Server Manager. It's a separate client, and has its own command line interface (istool).
by ray.wurlod
Mon Jul 12, 2010 10:24 pm
Forum: Enhancement Wish List
Topic: Information Analyzer: Output directly to user-defined tables
Replies: 5
Views: 11044

I don't believe that's the case - my understanding is that the data samples and some intermediate results are in IADB, but that the analysis results themselves are in tables in XMETA. Of course the exception records themselves would be in IADB. Perhaps you could create a DataStage job to move them.
by ray.wurlod
Mon Jul 12, 2010 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is compute node in GRID
Replies: 1
Views: 951

Not "the" compute node, but "a" compute node - there may be more than one, and it's a node on which computation takes place - that is, on which a player process executes.
by ray.wurlod
Mon Jul 12, 2010 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: legacy Stage
Replies: 1
Views: 805

WHAT "legacy stage"? What folder is it in?
by ray.wurlod
Mon Jul 12, 2010 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to access DS_JOBS table? What do I need?
Replies: 4
Views: 5755

There's no guarantee that what you want is in the DS_JOBS table - it may be in a table in the unified metadata repository (the XMETA database).

However, if you feel that you really must query the DS_JOBS table you can use the Administrator client's Command window.
by ray.wurlod
Mon Jul 12, 2010 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential vs parallel.
Replies: 1
Views: 908

Data Sets will still be written to the resource disk(s) specified in the configuration file being used by the Data Set stage. Ordinarily this will be the configuration file whose pathname is given by the value of the APT_CONFIG_FILE environment variable, irrespective of whether you specify sequentia...
by ray.wurlod
Mon Jul 12, 2010 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading null & fixed width integers
Replies: 4
Views: 1921

laknar wrote:Set this Property on Format Tab of the Sequential File Stage.

Code: Select all

Null field value=''
Not in a fixed-width field, where the Null Field Value property must have the correct number of characters.

Code: Select all

Null Field Value="          "
by ray.wurlod
Mon Jul 12, 2010 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: find average salary
Replies: 8
Views: 2881

That looks vaguely familiar yet, at the same time, somehow wrong.
by ray.wurlod
Mon Jul 12, 2010 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: English / French decimal separator issue
Replies: 16
Views: 6898

Changing entries in uvconfig has no effect until you issue a uvregen command and restart the services. In the meantime, set up before-stage subroutine and after-stage subroutine in your Transformer stage. Each executes ExecTCL. In the field for the command enter: SET.LOCALE FR-FRENCH in the before-s...