Search found 53125 matches

by ray.wurlod
Wed Nov 16, 2005 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date conversion
Replies: 3
Views: 1002

Lose the "E" for Iconv() - it specifies "European" format (day month year order). Your test value is in month day year order.

Code: Select all

Ans = Oconv(Iconv(Arg1, "D/MDY"), "D/E") 
by ray.wurlod
Wed Nov 16, 2005 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing different Project info from existing project
Replies: 9
Views: 1880

Oh yes you can! Just qualify the table name (DS_JOBS) with the schema name.

Code: Select all

SELECT CATEGORY FROM Project2.DS_JOBS WHERE NAME = 'OtherJob';

UniVerse/SQL (DataStage/SQL) is compliant with standards, so supports qualifying a table name with a schema name. Each project is a schema.
by ray.wurlod
Wed Nov 16, 2005 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to get data from databrowser for Universal Local UV
Replies: 9
Views: 3198

You can't just copy an SQL script into the VOC file; it doesn't work like that. The VOC entry must have "PA" in field #1 and the SQL statement must either all be on one line or use line continuation characters. The COPY command achieves none of these effects. What exactly are you attempting to achie...
by ray.wurlod
Wed Nov 16, 2005 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while accessing unidata db through unidata stage
Replies: 6
Views: 1724

Was the helper subroutine "Record" or "DSR_RECORD" ? This is important. DSR_RECORD is used by DataStage to get something out of the Repository, and if it fails it usually indicates a problem with the indexing in the Repository or the connection from the client. It looks like there was a partially co...
by ray.wurlod
Wed Nov 16, 2005 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Use DB2 Connect for Extracting DB2 / Mainframe Data
Replies: 6
Views: 2662

This would be better posted on a DB2 forum - it's set up entirely within DB2 Connect - DataStage at run time is simply another client application as far as DB2 is concerned. It's DB2 Connect that controls where the data come from or go to.
by ray.wurlod
Wed Nov 16, 2005 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Repository in version control
Replies: 8
Views: 5535

You can use the Administrator client - connect to the VERSION project (or whatever you called it) and use the Command window for that project. Or you can establish a telnet session to the DataStage server machine, get into the dssh shell in the VERSION project directory, and execute the command ther...
by ray.wurlod
Wed Nov 16, 2005 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Errors while viewing data through Teradata Enterprise Stage
Replies: 5
Views: 2343

Does your stage include a non-well-formed reference to a job parameter (for example not enclosed in "#" characters)?
by ray.wurlod
Wed Nov 16, 2005 2:57 pm
Forum: IBM QualityStage
Topic: error reading server reports and dat files
Replies: 5
Views: 2803

Welcome aboard! :D This one isn't your fault; it's a programming error in the client software. You may be able to get a fix from your vendor. The error is in programming using the grid control that is used to get the report from the UNIX machine and read it. Meanwhile you can use a text editor capab...
by ray.wurlod
Wed Nov 16, 2005 2:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server job abort but all records loaded in DB
Replies: 10
Views: 4659

Tell us what the warning and error messages in the log tell you.

Reset the job in Director and tell us the detail of any "from previous run..." event that is logged.
by ray.wurlod
Wed Nov 16, 2005 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Locks
Replies: 2
Views: 815

In the "Hawk" release (not out yet) the second user will be able to open a locked job in read-only mode. Prior to Hawk, however, the user who owns the lock has opened a database object (the job design in the Repository) for editing. A record-level update lock therefore exists, so that there won't be...
by ray.wurlod
Wed Nov 16, 2005 2:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Save Problem
Replies: 2
Views: 995

It is not possible. Except for table definitions, each type of component must be uniquely named within the project.

Invent a systematic naming convention, or use separate "sandbox" projects.
by ray.wurlod
Wed Nov 16, 2005 2:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Seq Problem
Replies: 2
Views: 789

What exact version of DataStage? In the various 7.x release there is an increasing number of compilation options to make job sequences record checkpoints so that it can be restartable from the first activity to fail.
by ray.wurlod
Wed Nov 16, 2005 2:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load Problem
Replies: 9
Views: 2504

Not enough information. What stage types are you using? What is the source? Are there any constraints in the source select statement that limits the row count to 5 crore? What is the "rows per transaction" setting? Do any error/warning messages from Oracle appear in the job log? Are you using OCI st...
by ray.wurlod
Wed Nov 16, 2005 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue while reading data from Oracle Table
Replies: 3
Views: 4080

This is happening before you even get connected to Oracle. "Failed to find instance" usually suggests a problem on the DataStage server, either with the environment variables for Oracle set in dsenv, or in the tnsnames.ora file (or the fact that this can't be found).
by ray.wurlod
Wed Nov 16, 2005 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: logic to create multiple outputs and combine them
Replies: 3
Views: 1210

To expand on Vince's comment, you are simply wasting CPU cycles - splitting your stream into 105 then putting them all back together again in the Funnel stage. Why??? What precisely are the two inputs to the Lookup stage? Hint: wrap your diagram with Code tags, then use Preview until you get it righ...