Search found 6797 matches

by DSguru2B
Fri Jun 16, 2006 12:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Initialize Db2 plugin
Replies: 11
Views: 2304

are you referencing the db2 profile in your dsenv file?
by DSguru2B
Fri Jun 16, 2006 10:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem using sequence in oracle stage.
Replies: 7
Views: 2106

Isn't that more of an oracle question than a Datastage. In Datastage we have Surrogate Key generator to perform the similar functionality.
by DSguru2B
Fri Jun 16, 2006 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status shows Running since many hours
Replies: 10
Views: 1585

That might be the reason. Is the staging database available. Give you DBA a call and ask him what that particular thread (from your id) is doing at that staging table. If he doesnt have a definate answer, ask him to kill the thread, which sends back a message to datastage of "connection not availabl...
by DSguru2B
Fri Jun 16, 2006 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: including reason of rejection of row in reject file
Replies: 8
Views: 2082

As i mentioned. You need to do this after that particular job has finished. You can use dsjob -logsum -type WARNING PROJECTNAME JOBNAME All of this is listed in Server Job Developer's Guide in dsbooks. If you want to code it in a routine, or even in the derivation in the transformer, look at the DSG...
by DSguru2B
Fri Jun 16, 2006 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status shows Running since many hours
Replies: 10
Views: 1585

What is the sub job doing, besides validations. It loading into some database ?
by DSguru2B
Fri Jun 16, 2006 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status shows Running since many hours
Replies: 10
Views: 1585

If there is no pre prcessing or post processing done in the job (via before/after subroutines) then i think thats a sign right there that the job is not moving forward. How many blue links are there, how stages have finsihed ? SO the last message in the log file was posted on 5:40 am. When did you s...
by DSguru2B
Fri Jun 16, 2006 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting records
Replies: 18
Views: 2954

Use the update action "replace existing rows completly". Define all the keys properly as it supplies that key as the where predicate for the delete. Read into that update action, or as Anupam mentioned, look at the sql.
by DSguru2B
Fri Jun 16, 2006 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status shows Running since many hours
Replies: 10
Views: 1585

More than that, look at the log file of that job. That will tell you whats going on with the job. If all is green, then its the job itself, too many functions in one job, record size being really huge, all of that takes a toll on the performance.
by DSguru2B
Fri Jun 16, 2006 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: including reason of rejection of row in reject file
Replies: 8
Views: 2082

For that you have to code accordingly. Like a batch script. Even then you wont be able to get warning message for each and every row. That information is present in the log files which is getting filled during the exection of the job, so there is no way you can get that info inside that same job. Af...
by DSguru2B
Fri Jun 16, 2006 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Status Codes returned by dsjob
Replies: 10
Views: 2282

Check thispost out. It has a script in which these error codes are handled. This should be of some help.
by DSguru2B
Thu Jun 15, 2006 5:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automatic DataStage Maintenance
Replies: 8
Views: 5185

Re: Automatic DataStage Maintenance

Here are my views - Stop (manualy) all the jobs in run state Two contradictory statements, automatic and manually. Hmm, dont know what to say. And by the way, stopping jobs that are running without any specific reason is not a very good idea. These jobs could be accessing a database and by passing a...
by DSguru2B
Thu Jun 15, 2006 2:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Login to the FTP server failed invalid password for user abc
Replies: 6
Views: 1770

how are you giving the path name.
Dont give the drive name thats mapped. Give the complete name of the server.
For eg:
If //myserver is mapped to drive J then dont give drive J , give //myserver.
by DSguru2B
Thu Jun 15, 2006 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with FTP stage
Replies: 6
Views: 2088

Maybe you are not specifying one of the properties correctly. Did you specify 'Fixed Width Columns' to Yes. Try sending the data in Binary instead of Ascii. Also increase your buffer length a little bit. Play around with these options. Go through the FTP stage in dsbooks. And btw, my name is not chu...
by DSguru2B
Thu Jun 15, 2006 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with FTP stage
Replies: 6
Views: 2088

Ok then try to ftp it manually from command prompt? See if that works
by DSguru2B
Thu Jun 15, 2006 1:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Avoiding Data disappear
Replies: 6
Views: 1294

Sure, get a snapshot of the table before deleting and loading the new data. Then your comparison can be done. :lol: