Search found 53125 matches

by ray.wurlod
Thu Mar 27, 2008 4:53 pm
Forum: General
Topic: 39125 error-Not a UV account
Replies: 8
Views: 5087

DS.REINDEX ALL won't help. This error usually indicates a problem with one of the system tables UV.ACCOUNT or UV_SCHEMA. Did "they", as part of getting the system back up and running, re-locate any of your DataStage components, particularly the DSEngine directory or project directories? Can you conn...
by ray.wurlod
Thu Mar 27, 2008 4:49 pm
Forum: IBM QualityStage
Topic: QS Stages showing with Plug in icons
Replies: 6
Views: 4202

That can occur simply by having too much demand for memory on the client machine (close some windows). Or it may be that the graphical components for the QualityStage stages have not been installed.
by ray.wurlod
Thu Mar 27, 2008 5:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting SQL query into Datastage server jobs
Replies: 7
Views: 2158

Once you post your analysis of the logic of the SQL I'm sure there will be those here who will be willing to help.

Why not simply run this query against the database from DataStage then have DataStage process the results?
by ray.wurlod
Thu Mar 27, 2008 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to remove the non keyboard specialcharecters from string
Replies: 7
Views: 1830

Just curious; where does the variable called "i" get its value? You test it in

Code: Select all

(i == 0) 
by ray.wurlod
Thu Mar 27, 2008 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to catch User Defined exceptions(PL-SQL) in Director Log
Replies: 1
Views: 875

No, because you're not doing it in DataStage.

You are using a stored procedure to trigger the PL/SQL. This is too far removed from DataStage. You could always follow it up with DataStage; to have DataStage to read wherever it is that you've had the PL/SQL dump its messages.
by ray.wurlod
Thu Mar 27, 2008 5:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversation
Replies: 12
Views: 2832

Surely it's %mm for a numeric month?
by ray.wurlod
Thu Mar 27, 2008 5:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replacing ' with &apos;
Replies: 8
Views: 3007

DataStage BASIC expressions recognize three quote characters. If you need to quote a single-quote character surround it with either of the others. Therefore you can represent a single quote as "'" or as \'\. Hence, for example, Ereplace(Input_Str, "'", "&apos;", -1, 0)...
by ray.wurlod
Thu Mar 27, 2008 5:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting SQL query into Datastage server jobs
Replies: 7
Views: 2158

Step 1 is to analyze, and document, the logic of the SQL. The main difference between a query and a job is that the job has to do something with the result.

Why not simply run this query against the database from DataStage then have DataStage process the results?
by ray.wurlod
Thu Mar 27, 2008 5:37 am
Forum: General
Topic: project creation
Replies: 6
Views: 1734

UV.ACCOUNT is not available (by default) from the Administrator client. UV_SCHEMA, however, is.
by ray.wurlod
Thu Mar 27, 2008 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User Defined Environment variables
Replies: 10
Views: 2655

Whence arose that rather odd requirement?

What about all the other environment variables? Technically every environment variable is user-defined. The "User Defined" category in the Administrator client is just a nicety - you can create them anywhere (if you know how).
by ray.wurlod
Thu Mar 27, 2008 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversation
Replies: 12
Views: 2832

Plus you need some token designators ("%") in the format string. For example "%mm/%dd/%yyyy".
by ray.wurlod
Thu Mar 27, 2008 2:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversation
Replies: 12
Views: 2832

You are generating a string, not a date. You need to apply a StringToDate() conversion - with appropriate format string - to the result that your concatenation expression generates.
by ray.wurlod
Thu Mar 27, 2008 2:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: split by month
Replies: 4
Views: 931

Indeed please explain your job design in detail as well.
by ray.wurlod
Thu Mar 27, 2008 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance issue
Replies: 4
Views: 1752

Everything is a performance overhead, for some particular meaning of "performance".

Often this includes the component between the keyboard and the chair.
by ray.wurlod
Thu Mar 27, 2008 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Transfer using DS
Replies: 3
Views: 1133

Welcome aboard. Why use DataStage? You can use ordinary operating system utilities with a great deal less effort. Unless it is as a learning exercise, why would you spend so much money on a mv command? (Or cp if your UNIX does not permit mv across file systems.) If this is part of some larger scheme...