Search found 53125 matches

by ray.wurlod
Thu Jun 09, 2011 5:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Archival of Table from ODS
Replies: 5
Views: 2087

Who said you have to use UNIX script? That information was not part of your original question!
by ray.wurlod
Thu Jun 09, 2011 5:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 and Datastage Difference ?
Replies: 1
Views: 972

Is this a join, a union, or some other kind of combination? Would it be assisted by indexes if performed in the database?
by ray.wurlod
Thu Jun 09, 2011 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2 CASE and Datastage transformer ...Which one is better??
Replies: 1
Views: 1087

There's only one way to find out. And YOU have the database!
by ray.wurlod
Thu Jun 09, 2011 5:07 am
Forum: General
Topic: Converting .XLS Format file to .csv
Replies: 3
Views: 954

Use Excel. Do it manually once, and record a macro. Now you will have VBA script that you can adapt.

It's not something that you would sensibly expect DataStage to be able to do.
by ray.wurlod
Wed Jun 08, 2011 8:23 pm
Forum: General
Topic: Recovering a deleted job
Replies: 4
Views: 1851

Yes there is. The DS_AUDIT table contains the DELETOR and date/time deleted fields.
by ray.wurlod
Wed Jun 08, 2011 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorrect Data format when reading from a double datatype
Replies: 7
Views: 2482

It's not difficult, it's merely tedious.
by ray.wurlod
Wed Jun 08, 2011 4:39 pm
Forum: General
Topic: Universe database
Replies: 8
Views: 4084

That's a huge topic, one that could not easily be answered in a single reply. Why not Search DSXchange for examples? For instance, a search on CATEGORY will turn up answers to your second question.
by ray.wurlod
Wed Jun 08, 2011 4:37 pm
Forum: General
Topic: IBM Information server client install replace ODBC drivers.
Replies: 4
Views: 2498

They're on the client because the Information Analyzer and QualityStage Match Designer use them from the client.
by ray.wurlod
Wed Jun 08, 2011 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Double column data Issue
Replies: 1
Views: 1010

What's hard about it? If you can change one you can change any number. The word you really wanted is "tedious". It's not hard. Many things in programming are tedious if done right. But, if they're done right, they're typically only done once.
by ray.wurlod
Wed Jun 08, 2011 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert special character in Datastage Transformer
Replies: 8
Views: 11076

NLS is "National Language Support" - a misnomer because it's about character sets and locales, not about languages. NLS provides the means to map external character sets (for example SHIFT-JIS for Japanese) into the Unicode used within DataStage. Actually, if NLSMODE is 0, then NLS has bee...
by ray.wurlod
Wed Jun 08, 2011 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup not working as expected
Replies: 5
Views: 2667

Always use trimmed VarChar on both inputs. Char is always untrimmed, so you need to have them identically padded.
by ray.wurlod
Wed Jun 08, 2011 4:29 pm
Forum: General
Topic: reporting on user access
Replies: 2
Views: 1005

There is not. "Active Sessions" is transient information only.
by ray.wurlod
Wed Jun 08, 2011 4:28 pm
Forum: General
Topic: disconnect session from command prompt
Replies: 3
Views: 1011

The disconnect interval can be configured by an Administrator.
by ray.wurlod
Wed Jun 08, 2011 3:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: question on padstring
Replies: 7
Views: 14154

Why necessarily with PadString() ? There is an easy way to left-pad with spaces. Create a string of that many spaces, concatenate the data, then extract the rightmost that many characters from the result.

Code: Select all

Right(Space(12):InLink.TheString),12)