Search found 42189 matches

by chulett
Mon Jan 18, 2010 8:46 am
Forum: General
Topic: Problem useing multiple value in parameter with where clause
Replies: 26
Views: 6325

No... something else is different. Operating system version, patch levels of O/S or DataStage, database client version, something. What database are we talking about here?
by chulett
Sun Jan 17, 2010 5:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Aborting giving very little information
Replies: 4
Views: 3463

So... this is new behaviour after migrating the job to the 8.x version? Are you on 8.0 or 8.1 and are you current on your patches / fixpacks?
by chulett
Sun Jan 17, 2010 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset mgmt works but orchadmin delete doesn't
Replies: 5
Views: 3422

Sorry, never been on a Windows server. :(

Support?
by chulett
Sat Jan 16, 2010 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash File limit
Replies: 7
Views: 3256

I think you can change the default settings and create hash files in the hash stage as 64 bit. its in the uvconfig. Whoa there! Make sure you understand what exactly this option does if you change that value in uvconfig - every single hashed file created in the project after that will become a 64bi...
by chulett
Sat Jan 16, 2010 5:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp Conversion error AM/PM
Replies: 4
Views: 1795

Meaning... you have to handle the 12 to 24 hour conversion manually in PX? :?
by chulett
Sat Jan 16, 2010 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TimeStamp Format to read MicroSecond from Oracle RDB
Replies: 15
Views: 14309

Umm... I don't recall the 7.x version of Oracle having any kind of a TIMESTAMP column. :?
by chulett
Sat Jan 16, 2010 12:26 pm
Forum: General
Topic: RTI Stage
Replies: 3
Views: 1677

Ernie will probably do a much better job, but some short answers: 1. It used to be a charged option but I don't think it is any more, could be wrong however. Yes, you'd have to license the Agent as that needs to be running to 'RTI Enable' a multi-instance job. 2. That's all in the docs and in the in...
by chulett
Sat Jan 16, 2010 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how implement like operator in DS
Replies: 7
Views: 2103

Stop and think about it for a moment. Maybe even try it. The code I gave you does exactly that. And now that I know the this and that:

Code: Select all

If Link.Column[1,3] = "INT" then Link.Column else "0"
by chulett
Sat Jan 16, 2010 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how implement like operator in DS
Replies: 7
Views: 2103

Which is exactly what I gave you does. How will checking the first three characters of "INT1" or "INT2" for "INT" fail? :?
by chulett
Sat Jan 16, 2010 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how implement like operator in DS
Replies: 7
Views: 2103

Use the substring operators to check to see if the first three characters = "INT". For example:

Code: Select all

If Link.Column[1,3] = "INT" then this else that
by chulett
Sat Jan 16, 2010 8:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Normal Jobs Vs Multi Instance Jobs
Replies: 4
Views: 1527

No, there's no 'architectural' difference at all. It's just that the addition of the Invocation ID to the job's name at runtime results in a unique job name allowing multiple invocations of the 'base' job name to run.
by chulett
Sat Jan 16, 2010 8:45 am
Forum: General
Topic: How to run UV commands from Unix
Replies: 15
Views: 21580

That's because you are sitting in the Engine directory rather than a Project. Add a step "2.5" where you cd to the Project directory you want to check. Note you could also try adding a "LOGTO <ProjectName>" command to the beginning of the commands you run in Step 3.
by chulett
Sat Jan 16, 2010 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash File limit
Replies: 7
Views: 3256

You only need to do the resize once as long as all you do is 'clear' the hashed file between runs. If you set the option to delete and recreate it, it will start off life as a 32bit hashed file again and you'll be back to square one.
by chulett
Sat Jan 16, 2010 8:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash File limit
Replies: 4
Views: 1991

Your "hashedfilepath" must be the complete path to the hashed file, including its name. Did you do so? It would look something like: SETFILE /a/b/c/Fred Fred OVERWRITING Where 'Fred' is the actual hashed file name. Note the second name can be anything, think of it like an alias for the has...
by chulett
Sat Jan 16, 2010 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append file contents to the existing file
Replies: 2
Views: 1648

For a BASIC routine you need to check the SEEK function. After you open the file, you can use SEEK with the appropriate option (2?) to move to the end of the file and then start writing.