Search found 653 matches

by ogmios
Tue Jan 27, 2004 9:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automated Restart?
Replies: 5
Views: 2347

There are several other solutions, it's just preference I think. If the DataStage server crashes unexpectedly our operators do a category by category check on the jobs anyway and they didn't need to do this for the last year. The advantage of keeping it in DataStage is that it's simpler for the oper...
by ogmios
Tue Jan 27, 2004 8:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automated Restart?
Replies: 5
Views: 2347

Re: Automated Restart?

If the file only appears a single time every day schedule your job once every day. If the file can appear multiple times you'll have to write your own BASIC sequence job to get it done by looping (wait for file... do run... wait for file... do run...). Some hints: * Use DSWaitForFile instead of slee...
by ogmios
Tue Jan 27, 2004 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Doubt regd look up on ODBC
Replies: 2
Views: 1032

1) No 2) No "recently looked up" cache 3) No :D, the usual advise is to preload your lookup data to a hash file and do the lookups from there. Since I don't like hash files that much, I usually move the "lookup table" to the database where the main query is executing in (if it's ...
by ogmios
Mon Jan 26, 2004 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 and IFX
Replies: 1
Views: 2166

Re: DB2 and IFX

Don't use IXF, export to DEL. Then if you want to do the loads via DataStage use a "sequential file stage". I'm not familiar with SQL server but there should also be 1 or 2 tools to load tables from ASCII files.

Ogmios
by ogmios
Mon Jan 12, 2004 2:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage parameter encryption
Replies: 0
Views: 911

Datastage parameter encryption

Did anyone already fully "crack" the 2-way encryption algorithm used in "Encrypted" parameters? At first sight the encryption looks pretty weak, but I haven't been able to figure out the full algorithm. So far: * every character gets encrypted to 3 characters * the third characte...
by ogmios
Wed Dec 10, 2003 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob TIMEZONE problem
Replies: 2
Views: 967

dsjob TIMEZONE problem

Has anyone noticed the following problem (and fixed it): The UNIX server uses "winter time". The following 3 points are done with the same user id: - When I ask the time of the system with the UNIX command "date" I get the correct time. - When I look in Director all of the times ...
by ogmios
Thu Sep 25, 2003 1:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: comparing to @ID
Replies: 4
Views: 1534

comparing to @ID

Can someone point me in the right direction. I'm trying to do the following in uv:

UPDATE RT_LOG1111 SET TYPE = 0 WHERE @ID LIKE '//SEQUENCE.NO%';

The problem is that I can't seem to use LIKE on @ID ("DataStage/SQL: The LIKE operator may only be used with character data")

Ogmios.
by ogmios
Tue Sep 16, 2003 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The DataDirect ODBC Driver Warning
Replies: 3
Views: 2336

You're only allowed to use the ODBC via a GUI job, not via a BASIC job, or you have to buy ODBC licenses (which are not cheap on UNIX machines). People have given an extensive explanation on it before on this site. The trick we use is to either use OCI or transform our data to an ASCII file and then...
by ogmios
Mon Sep 15, 2003 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing job log
Replies: 4
Views: 1272

Clearing job log

I'm using DataStage version 6.0 on Solaris and I'm seeing something strange happening with my log files in the RT_LOGXXX directories: they don't seem to shrink anymore, only grow. The behaviour seems to be that the size of the hash file always remains the largest as it ever was (and yes Autopurge is...
by ogmios
Mon Sep 08, 2003 12:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Suppressing warnings
Replies: 3
Views: 1585

I'm using DataStage 6.x on Solaris, OCI8 to an Oracle 9 database. One datastage job will load rows from one source system, while the update job only updates information in the same table but this information is from another source system (as a kind of an override). The source system for which I do t...
by ogmios
Sun Sep 07, 2003 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Suppressing warnings
Replies: 3
Views: 1585

Suppressing warnings

Is there a clean way to suppress warnings in Director? I'm using DataStage 6.x and am updating information in an Oracle table (using OCI plugin). Not all of the rows that I currently send to the update stage is present in the target table so these rows generate warnings in the logfile (if the data i...
by ogmios
Sun Jun 29, 2003 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using different groups
Replies: 6
Views: 2252

I know the distinction between operator and developer in DataStage, but if I put a user (actually the group the user is in) to operator he can only see released jobs. And since we're not releasing jobs the operator rights are pretty useless. Hence the id of giving both developer rights, but putting ...
by ogmios
Sun Jun 29, 2003 4:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using different groups
Replies: 6
Views: 2252

Using different groups

Does anyone have a solution for the following: in DataStage v6.0 running on Unix. We have 2 (unix) groups, one group would have full access, the other group would only be allowed read access in DataStage. We're not using releasing of jobs (this would make it possible to differentiate between operato...
by ogmios
Tue Jun 17, 2003 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Shutdown
Replies: 9
Views: 2189

Also normal users can't kill processes started by other users.

So unless you're running as root or all DataStage jobs are started as the same user id "kill" will normally not work.

Ogmios
by ogmios
Thu Apr 24, 2003 12:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DeleteSeq???
Replies: 4
Views: 1348

DeleteSeq???

You can open ASCII files from DataStage with OpenSeq, write to them, close them. But is there also a function to delete files from within a BASIC program? I haven't found any so far.

Ogmios