Search found 53125 matches

by ray.wurlod
Wed Jan 23, 2013 7:20 pm
Forum: General
Topic: How to find a String in Datastage job
Replies: 4
Views: 4524

Then search an export (DSX) file, or query the DS_JOBOBJECTS table from within the dssh environment. Note that DataStage SQL identifiers are case sensitive.

Code: Select all

SELECT * FROM DS_JOBOBJECTS WHERE EVAL "@RECORD" LIKE '%PSEUDO%';
by ray.wurlod
Wed Jan 23, 2013 7:19 pm
Forum: General
Topic: List of sequences
Replies: 4
Views: 2109

Bound to be, but I'm not at a site where I can look at that. (At another pre-installation site.)
by ray.wurlod
Wed Jan 23, 2013 7:16 pm
Forum:
Topic: How to encrypt config.ini file for BGA install
Replies: 3
Views: 2339

The config.ini file does not get deployed. It is used to build a BGA image in which the password IS encrypted.
by ray.wurlod
Wed Jan 23, 2013 7:12 pm
Forum:
Topic: Problems installing Business Glossary Anywhere on Windows 7
Replies: 4
Views: 2656

Mine so far have all been on Windows XP. (The same shop only upgraded from IE6 late last year.)
by ray.wurlod
Wed Jan 23, 2013 1:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Folder stage Issue
Replies: 10
Views: 3305

Ditto. What output do you require? Perhaps you can solve it via the Filter command in a Sequential File stage - which will read stdout of the Filter command rather than any particular file.
by ray.wurlod
Wed Jan 23, 2013 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on correlation between partitions and nodes
Replies: 6
Views: 2314

So you have proven that the data are being hash partitioned on POL_NB. Are you claiming that there is one value of POL_NB that is found on more than one node? If so, please figure out a way to demonstrate that and get in touch with your official support provider.
by ray.wurlod
Wed Jan 23, 2013 1:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slowly Changing Dimension Stage - size limitations?
Replies: 5
Views: 2933

Would it make any difference if your reference data were partitioned three or more ways, so that any one process had less than 2GB of reference data with which to deal?
by ray.wurlod
Wed Jan 23, 2013 1:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: slower ODBC Enterprise stage
Replies: 11
Views: 7459

zaino22 wrote: It is faster with one column extract and performance goes down as we add more columns.
That makes complete sense, since elapsed time will be directly proportional to total volume of data needing to be processed.
by ray.wurlod
Wed Jan 23, 2013 1:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Folder stage Issue
Replies: 10
Views: 3305

Possibly an External Source stage will be what you require.
by ray.wurlod
Wed Jan 23, 2013 1:13 pm
Forum: General
Topic: How to find a String in Datastage job
Replies: 4
Views: 4524

Use Quick Find and search for *PSEUDO*
by ray.wurlod
Wed Jan 23, 2013 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change current date + different second for each row
Replies: 19
Views: 5106

Look for similarly-named functions, maybe TimestampSinceFromSeconds(). We often post without access to the software; at the moment I'm in a hotel room.
by ray.wurlod
Wed Jan 23, 2013 1:47 am
Forum: General
Topic: Previous day in User variable activity
Replies: 3
Views: 2569

Code: Select all

@DATE - 1
or

Code: Select all

Date() - 1
This gives yesterday's date in DataStage internal format. To convert to human-readable format use Oconv() function. For example

Code: Select all

Oconv(@DATE - 1, "D-YMD[4,2,2]")
by ray.wurlod
Tue Jan 22, 2013 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: slower ODBC Enterprise stage
Replies: 11
Views: 7459

Compare all the properties in the two ODBC Connector stages, looking for ANY differences.
by ray.wurlod
Tue Jan 22, 2013 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace special characters
Replies: 16
Views: 8504

The syntax of tr command is no different called from DataStage than what you would use in UNIX. How were you planning to call it? Perhaps an External Filter stage?
by ray.wurlod
Tue Jan 22, 2013 2:35 pm
Forum: General
Topic: Pass job parameter inside Job Control
Replies: 5
Views: 1363

I still prefer explicit DSGetParam() calls, believing that the code is more self-documenting using that approach.