Search found 42189 matches

by chulett
Thu Jun 28, 2007 7:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Manager
Replies: 6
Views: 986

Please provide better explanation of problem first.
by chulett
Thu Jun 28, 2007 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is Version 7.5.2
Replies: 3
Views: 1311

Any version should be available in both flavors, unless that's changed with 8.x. They used to refer to them as 'EE' for Enterprise Edition, which included both PX and Server, or 'XE' which was the Extended Edition - Server with some other components, MetaStage mostly from what I recall. Not sure wha...
by chulett
Thu Jun 28, 2007 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: environment variable in the DSJOB.EXE
Replies: 11
Views: 3870

Ok... then answer my last two questions.
by chulett
Thu Jun 28, 2007 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rows/Sec
Replies: 13
Views: 4161

Here, let me quote him for you (I don't think he'll mind). It's nothing new or anything we haven't said over and over already:

ray.wurlod wrote:<snip> But, if you're not permitted to change the design, there's nothing you can do to address this
by chulett
Thu Jun 28, 2007 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: environment variable in the DSJOB.EXE
Replies: 11
Views: 3870

Besides the fact that you would not want to set your PATH statement to that particular value, you wouldn't do that as part of the dsjob command. $PATH is reserved, I'd suggest you use a different name if you need a 'file path' variable. Wrapper your dsjob call in a script. Set the variable there bef...
by chulett
Thu Jun 28, 2007 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change DataStage clients default directory (compilation)
Replies: 8
Views: 2371

Re: Change DataStage clients default directory (compilation)

Job compilation on clients is sometimes writing data in the "C:\Program Files\Ascential\DataStage" directory. Within our company it is not allowed to have write access on this directory. We really should be keeping a list somewhere of all the silly rules we've seen people having to deal with over t...
by chulett
Thu Jun 28, 2007 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCIBL problem
Replies: 20
Views: 4558

Sorry, but there really isn't anything else to suggest. Except... hmmm... talk to your DBA. Explain you've just switched from doing direct inserts into that table to bulk loading it. Have them make sure you've got the proper grants you'd need for that.
by chulett
Thu Jun 28, 2007 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem running multiple instance job in a sequence
Replies: 8
Views: 3605

:? Ok... I don't see the correlation, but ok. So, now what? You remember to manually purge the logs on occasion?
by chulett
Thu Jun 28, 2007 6:28 am
Forum: General
Topic: FTP Issue
Replies: 5
Views: 1761

Perhaps you should post your script?

The vast majority of problems we see where scripts 'run fine' from the command prompt but not from DataStage are where the script writer make too many assumptions about their environment.
by chulett
Wed Jun 27, 2007 10:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding change for creating new file from existing file
Replies: 13
Views: 2698

Create a new job. All you need is one that reads the first record from your source file and writes that to a new file. Nothing more, nothing less. Heck, if you had the MKS Toolkit installed, a head -1 command would work for this as well.

And I wouldn't touch that routine with a ten foot pole.
by chulett
Wed Jun 27, 2007 10:30 pm
Forum: General
Topic: Error running a batch file
Replies: 12
Views: 6263

Please explain exactly what "When I checked in the command prompt %path%, it gave a return as" means. What you've shown is correct for a PATH statement as it is a collection of directories to search inside in the order listed for executables in the absence of an absolute path. It's nothing you can ...
by chulett
Wed Jun 27, 2007 6:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare Timestamp using SELECT
Replies: 6
Views: 2315

Changing the NLS_DATE format won't affect queries that specifically use TO_DATE() or TO_CHAR() properly. If you want some help, how about answering our questions? Let's see... * What stage are you using * Datatype of the REGIST_DATE field in Oracle * Datatype of the REGIST_DATE field in your job * W...
by chulett
Wed Jun 27, 2007 4:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is DS Job log stored in a hash file?
Replies: 6
Views: 1483

I left that little tidbit for you, Ray. :wink:
by chulett
Wed Jun 27, 2007 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare Timestamp using SELECT
Replies: 6
Views: 2315

You shouldn't need user-defined sql for something simple like that. However, your syntax looks valid to me, what makes you think it didn't select the 'correct' records? Is your REGIST_DATE field a DATE datatype in the table or something else? Typically you'd use a TO_DATE for this, but either should...