Search found 53125 matches

by ray.wurlod
Fri Oct 28, 2005 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_String and other PX types
Replies: 8
Views: 2222

They're also given out when you attend any Ascential/IBM PX class.
by ray.wurlod
Fri Oct 28, 2005 6:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing "%" in a string
Replies: 2
Views: 1086

The function you need is Convert() in a Transformer stage.

Code: Select all

Convert("%", "", InLink.TheString)
See page B-9 of Parallel Job Developer's Guide
by ray.wurlod
Fri Oct 28, 2005 6:27 pm
Forum: DSXchange Testimonials
Topic: Ready to take any challenge in datastage with DSXchange help
Replies: 2
Views: 12444

Re: Ready to take any challange in datastage with DSXchange

Now i am ready to meet any challange from client side with this forum as my right hand support. While appreciating your thoughts, that is not really the intended task of DSXchange. To help with the occasional uncertainty or difficulty, certainly. But to be your "right hand support", that kind of th...
by ray.wurlod
Fri Oct 28, 2005 3:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job status
Replies: 3
Views: 1447

The job is stopped. But it never got a chance to update its records in the RT_STATUSnnn table. Probably quickest is to Clear Status File from Director. Otherwise, you must reset the status value for job, resource and active stage records in RT_STATUSnnn, to explain which would take more time than I ...
by ray.wurlod
Fri Oct 28, 2005 3:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSN Names
Replies: 19
Views: 8830

You must make the changes on the DS server, particularly the uvodbc.config file in the project and the .odbc.ini file in the "home" directory.

No changes are required on the DS client machine.
by ray.wurlod
Fri Oct 28, 2005 2:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSN Names
Replies: 19
Views: 8830

DSNs only appear in the drop-down list in the ODBC stage if you've imported at least one table definition from the data source. When you're going through the process of Import > Table Definitions > ODBC Table Definitions in the Manager client, all DSNs named in the project's uvodbc.config file appea...
by ray.wurlod
Fri Oct 28, 2005 2:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSN Names
Replies: 19
Views: 8830

There is a (hidden) file called .odbc.ini in the DataStage Engine directory (the directory specified by $DSHOME). Sometimes an environment variable $ODBCINI has been created to refer to the location of .odbc.ini . The .odbc.ini file contains the definitions of all DSNs visible from the DataStage ser...
by ray.wurlod
Fri Oct 28, 2005 2:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS export existing map for edit
Replies: 14
Views: 2654

The job contains the name (strictly the "Catalog name") of the routine. When the job attempts to invoke the routine, DataStage searches in the Catalog for the location of that routine. An error is generated if nothing is found. If a routine of that name has been cataloged, and it has the correct num...
by ray.wurlod
Fri Oct 28, 2005 1:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSN Names
Replies: 19
Views: 8830

DSNs with associated database information need to be set up in .odbc.ini and a reference to each DSN must be set up in the uvodbc.config file in your project.

There has been a recent thread on just this topic; search should find it fairly easily. A good search term might be DBMSTYPE.
by ray.wurlod
Fri Oct 28, 2005 1:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC stage vs Oracle(OCI) stage
Replies: 4
Views: 2546

There's not a big difference for SELECT, but there can be a huge difference for INSERT and UPDATE.
by ray.wurlod
Fri Oct 28, 2005 1:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project Variable
Replies: 7
Views: 2026

Look for the function DSGetParamInfo() in on-line help.
by ray.wurlod
Thu Oct 27, 2005 9:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator stage, IPC
Replies: 4
Views: 1274

That's cool 8)

It's just an obvious thing to ask.
by ray.wurlod
Thu Oct 27, 2005 9:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Program Unable to allocate Type 30 descriptor, table is full
Replies: 4
Views: 4186

All repository design time objects are stored in dynamic hashed files with names beginning DS_, for example DS_JOBS, DS_ROUTINES and so on. All repository run time objects are stored in dynamic hashed files, and there is one set of these per job. Most have names beginning RT_, for example RT_CONFIGn...
by ray.wurlod
Thu Oct 27, 2005 7:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator stage, IPC
Replies: 4
Views: 1274

Is the first Aggregator stage doing anything you couldn't do with a GROUP BY clause in the SELECT statement?