Search found 53125 matches

by ray.wurlod
Tue Apr 19, 2005 6:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Who is logged on DataStage
Replies: 9
Views: 2997

If you execute LIST.READU instead you can get more information. Each connected client has a type "RL" lock on an artificial record called !&DS.ADMIN_project&! and a type "RU" lock on a record whose name is made up of the Windows identifier of the client machine then the host name of that mac...
by ray.wurlod
Tue Apr 19, 2005 5:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VersionControl Tables
Replies: 6
Views: 1063

Don't rely on this into the future. There are substantial changes to the Repository in the next ("Hawk") release, scheduled for September 2005.
by ray.wurlod
Tue Apr 19, 2005 5:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to count the number of records in a seq file
Replies: 8
Views: 2543

A typo, thanks for catching it. I have edited the original code so that LineCount is correctly initialized to 0. (I was doing it in a noisy airport lounge!)
by ray.wurlod
Tue Apr 19, 2005 5:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregation on a single field
Replies: 9
Views: 1645

Think about how you would do it in a query. You'd almost certainly need a temporary table (virtual or physical) in which to store the keys and associated sums, so that you could join this with the original result set. Well, no surprise, the processing isn't really any different in DataStage; you jus...
by ray.wurlod
Tue Apr 19, 2005 5:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling subroutine
Replies: 4
Views: 1212

Given that the helper subroutine was DSR_SELECT, check also that the indexing in the Repository is completely up to date. At a time when you have exclusive access to the project, execute DS.REINDEX ALL (from a dssh environment on the server or through the Administrator client Command window).
by ray.wurlod
Tue Apr 19, 2005 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS interpreting warning as error
Replies: 2
Views: 1027

DataStage's engineers' philosophy is to log every warning generated by anything anywhere, the argument being that if it was important enough to generate it's important enough to log. DataStage, therefore, has no mechanism for ignoring specific warnings (or even informational messages, like Informix'...
by ray.wurlod
Tue Apr 19, 2005 5:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting to DataStage server failed...
Replies: 17
Views: 4526

Can you start a new thread for ODBC connectivity to Sybase? No-one would expect to find it under topic "connecting to DataStage server failed".
by ray.wurlod
Tue Apr 19, 2005 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dates differences in years and months
Replies: 3
Views: 1944

365.25 or 365.249 as the divisor might get even closer (allows for leap years).
by ray.wurlod
Tue Apr 19, 2005 5:32 pm
Forum: Site/Forum
Topic: Number of posts in own information
Replies: 5
Views: 3610

Your posts count and points are to the left of every post you've made. 8)
by ray.wurlod
Tue Apr 19, 2005 5:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage jobs cannot be run/execute
Replies: 6
Views: 1843

Provided everything is restored to exactly the same location (including hidden files) it should work OK.
by ray.wurlod
Tue Apr 19, 2005 1:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic where clause from another table
Replies: 2
Views: 1816

Don't know if you can do this in Sybase.

In DataStage you will need to select the contents of the VarChar column, load this into a job parameter, and use a reference to that parameter in the WHERE clause in a controlled job.
by ray.wurlod
Tue Apr 19, 2005 1:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to read LOGS.DIR entry from D_UV_LOGS
Replies: 6
Views: 2777

You seem to have three threads going on this problem. My bet is that your "migration" was performed with UNIX utilities, and therefore that there is a lot of repair needed. See other thread for details that are as complete as I can manage out of my head.
by ray.wurlod
Tue Apr 19, 2005 12:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script to delete files based on timestamp
Replies: 8
Views: 3015

You could try the find command (with exec of rm ) through remote shell. Your UNIX administrator will have a heart attack when you ask for authority to do this, but you merely need to convince her or him that your UNIX skills are sufficiently up to scratch! It may be better to create such a shell scr...
by ray.wurlod
Tue Apr 19, 2005 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting to DataStage server failed...
Replies: 17
Views: 4526

If you can't find .dshome in the root directory, your installation is incomplete and you will probably need to reinstall the server. Use ls -al /.dshome to determine whether you really can not find this file. If you believe that the installation is successful otherwise, you could try to create /.dsh...
by ray.wurlod
Tue Apr 19, 2005 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SEQ_FILE
Replies: 7
Views: 1875

Stage variables svRecType init @NULL derivation Left(InLink.Column, 1) svTest init 0 derivation If (svRecType = "X") And (@INROWNUM > 1) Then (svYCount = 0) Or (svZCount = 0) Else @FALSE svYCount init 0 derivation If svRecType = "X" Then 0 Else svYCount + 1 svZCount init 0 derivation If svRecType = ...