Search found 6797 matches

by DSguru2B
Mon Apr 30, 2007 7:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IPC & Manageing resource contention
Replies: 11
Views: 2797

Each active stage will create a process. With multiple jobs running, the resouces will be shared by the jobs and the OS kernal will decide how much to provide to what process.
by DSguru2B
Mon Apr 30, 2007 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: This Item has no deign time information
Replies: 6
Views: 1263

When you exported the job, did you export the job design as well?
by DSguru2B
Mon Apr 30, 2007 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement After and Before in ODBC stage
Replies: 4
Views: 1396

You can also use the OPEN and CLOSE commands in the enterprise stage. These properties are present under 'Options'.
by DSguru2B
Mon Apr 30, 2007 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance on Lookup operation
Replies: 2
Views: 970

Well a hashed file with just keys can take a lot more than a few million records and not hit the 2GB limit. You can also make the hashed file 64bit and get rid of the 2GB barrier altogether. You can also load your souce into a work table and pass a sql join.
by DSguru2B
Mon Apr 30, 2007 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Facing a problem in order to pass a value from Sequencer
Replies: 8
Views: 3137

You dont need the user variable stage. Get rid of it. Connect the execute command stage directly to the job activity stage and in the value expression. Provide the following

Code: Select all

FIELD(Execute_Command_21.$CommandOutput, @FM, 1)
by DSguru2B
Fri Apr 27, 2007 7:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: hi
Replies: 16
Views: 3644

Executables are in binary internal code. You wont be able to view it. Why do you want to do that?
by DSguru2B
Fri Apr 27, 2007 7:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what goes to oracle enterprise stage's reject
Replies: 25
Views: 8346

You are right. Load wont work as it utliizes the sql loader. I have fixed my original post.
djoni, try to build a job at your current site in which you think the records should be rejected. Send that to IBM.
by DSguru2B
Fri Apr 27, 2007 2:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what goes to oracle enterprise stage's reject
Replies: 25
Views: 8346

For primary key being the same for two or more records, if you use Upsert method then you might not see rejects as the very first one will be inserted and the second and so on, will be updates. Choose upsert method and then you will see. I am surprised IBM said the reject does not work.
by DSguru2B
Fri Apr 27, 2007 1:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do you capture all the errors?
Replies: 11
Views: 2817

Whatever goes wrong with the job, it will be logged. You can get the log entries by various options of dsjob command. Namely -logsum, -logdetail, -report etc. Look into them.
by DSguru2B
Fri Apr 27, 2007 1:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using the FTP plugin stage on a GPG encrypted file
Replies: 5
Views: 1317

I have never tried it. But I dont see why it wont be able to transfer properly in binary mode. But definately you wont be able to view it without decryption. That goes without say. Try decrypting the file.
by DSguru2B
Fri Apr 27, 2007 1:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using the FTP plugin stage on a GPG encrypted file
Replies: 5
Views: 1317

The ftp might be succesfull but you need to decrypt the file before being able to read it. Are you just trying to view the encrypted file?
by DSguru2B
Fri Apr 27, 2007 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: simple if statemnet
Replies: 8
Views: 1724

No, the double/single quotes would not matter.
Then its really your second condition that might not be coming true.
Try the following

Code: Select all

if (new_date <= extract_date) And (@TRUE) 
then

statement A

else

statement B
by DSguru2B
Fri Apr 27, 2007 12:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: simple if statemnet
Replies: 8
Views: 1724

Are'nt you suppose to specify the string to trim along with B option. Also you are not comparing it with anything. Use the following if trim(inputfield," ","B")="" or isnull(inputfield) then @NULL else trim(inputfield," ","B")
by DSguru2B
Fri Apr 27, 2007 12:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: simple if statemnet
Replies: 8
Views: 1724

You sure its null and not just a space or nothing? Is your source a flat file?
by DSguru2B
Fri Apr 27, 2007 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do you capture all the errors?
Replies: 11
Views: 2817

Welcome Aboard
There are numerous error that you can encounter on a flat file using the sequential file stage. File permissions, metadata problems to name a few. I suggest spending a few hours going through file related problems on this forum.
What do you mean by logical errors though, it passed me.