Search found 42189 matches

by chulett
Thu Feb 23, 2006 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Configuring userids on Datastage server
Replies: 11
Views: 7022

Search the forum for that particular error number - 39202. You'll find tons of posts that mention it and it all seems to have to do with improperly setup permissions on the server install.
by chulett
Wed Feb 22, 2006 6:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot get access to log file for job
Replies: 9
Views: 2532

Mine was the direct result of the improper use of the 'Enabled, Locked for Updates' option in a hashed file lookup, which rather quickly filled the lock table to capacity and had all kinds of nasty consequences to everyone else on the server. We either needed to UNLOCK everything for that user, or p...
by chulett
Wed Feb 22, 2006 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call to SQLFetch failed
Replies: 13
Views: 4281

Posting a 'BUMP' message is a mechanism used by people on other web-boards to get their issue 'bumped' back up to the top of the forum when they have nothing else to add and are just waiting for someone to notice.

Not really appropriate here.
by chulett
Wed Feb 22, 2006 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error:Failed to open a file
Replies: 8
Views: 1333

vimali balakrishnan wrote:There are no issues with the Filename or File permissions.

There is, you just haven't found it yet. :wink:
by chulett
Wed Feb 22, 2006 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find out which User has run the job
Replies: 6
Views: 957

Actually, you can double-click on any log message. The Event Detail dialogue box that pops up has an area for User - as in the user that logged the message, i.e. ran the job. :wink:
by chulett
Wed Feb 22, 2006 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequencing
Replies: 8
Views: 1737

2. Call the Job Which will Read from the source table and create a file called "triggerfile" in the predefined directory, if the source table has a record with Null extract date. Out of curiousity, how are you keeping it from creating the file regardless of the outcome of the source query? Just hav...
by chulett
Wed Feb 22, 2006 8:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequencing
Replies: 8
Views: 1737

You would write a 'generic' routine that takes the three required bits of information as arguments. Check the syntax of the command - you'll need a handle to the job to check and the name of the link and the transformer it comes from. Your routine would then take the jobname you passed in and try to...
by chulett
Wed Feb 22, 2006 8:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DsLofInfo function In datastage pz
Replies: 3
Views: 1055

Well... you could always start by checking the online help for the command, the syntax will be fully documented there and in the pdf 'Docs' files installed on your pc.
by chulett
Wed Feb 22, 2006 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting Abort error
Replies: 7
Views: 1266

Well, you are connect to an instance, that's for sure. So, you either connected to the wrong instance, you've spelled the table name incorrectly, you are connecting as someone who doesn't own the table and you haven't specified the owner or you've just plain old specified the owner of the table inco...
by chulett
Wed Feb 22, 2006 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loop in Transformer
Replies: 12
Views: 4666

I wasn't thinking about stage variables for this. Was wondering if there is a known upper limit to the count then you could simply have that number of output links from the transformer and constrain the output based on the count such that each record went down the first n links. Then a Link Collecto...
by chulett
Wed Feb 22, 2006 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Migration 6 to 7.5
Replies: 5
Views: 1325

In other words, stop focusing on the DS upgrade as the culprit and look into what changed in the query or database to cause this to 'run long'. Your stats may be out of date and the query plan changed dramatically. I'd suggest working with your DBA unless you feel comfortable doing the analysis your...
by chulett
Wed Feb 22, 2006 7:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to execute unix sleep function in datastage
Replies: 3
Views: 2118

Or fully path the script in your ExecSH call and make sure it has execute permissions on it.
by chulett
Wed Feb 22, 2006 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: When not to use compare(x,y)
Replies: 12
Views: 2492

... and DSLink3.key is defined as what datatype in your job?
by chulett
Wed Feb 22, 2006 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting Abort error
Replies: 7
Views: 1266

All that tells you is the fact that it tried to run a job called SEQ_J_Stage_PS_S_BUS_UNIT_FS_CRM and that job aborted. The next step is to go to the job it tried to run and look at its job log to find out why. What does it say in there?
by chulett
Wed Feb 22, 2006 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequencing
Replies: 8
Views: 1737

How comfortable are you with writing your own Job Control? This would be pretty straight-forward if you are but you may be able to do something in the GUI with the new Start/End Loop constructs as well. You could create a simple job that sources that row from the table in question. It doesn't really...