Search found 15603 matches

by ArndW
Wed Dec 28, 2005 3:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Failed to open <file> in <dir>
Replies: 12
Views: 9088

You will need to put the send mail as an after-job call to have it executed once per job; right now it will execute every row. The configuration of the DSSendMail() utility is done only through modificaton of the dssendmail_template.txt file and through the parameter list. Please take the time to re...
by ArndW
Wed Dec 28, 2005 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle error
Replies: 2
Views: 981

Scorpion, your SQL query (either the generated one or your user-written SQL) has invalid characters in it. Most likely you used a special character in a column name and didn't quote it appropriately. If you cut-and-paste the SQL query from your Oracle Stage into your query tool of choice (SQLPlus or...
by ArndW
Wed Dec 28, 2005 3:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting an error msg while opening the properties of trans.
Replies: 2
Views: 886

This type of error can occur when some automated update package on your PC has installed some new or upgraded software and overwritten DLLs. This error might go away if you re-install your client (although whatever other package is out there might have problems).
by ArndW
Wed Dec 28, 2005 2:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Failed to open <file> in <dir>
Replies: 12
Views: 9088

antojj, you need to read the documentation on how to set up your mail environment in DataStage. Have you even looked at the template file? Think about it, you have told the DSSendMail from whom the mail is supposed to be coming but haven't told it other vital things such as recipient, subject and ev...
by ArndW
Tue Dec 27, 2005 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: source code for KeyMgtResetValue
Replies: 8
Views: 2360

there are locks, this is the only reason that an UPDATE command will not return. Try doing a "fuser -fux SDKSequences" to see which processes have that file open. I bet you it will be more than 1.
by ArndW
Tue Dec 27, 2005 2:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with this Error
Replies: 6
Views: 1551

I would go to TCL and enter the command "LIST DS_JOBS WITH @ID EQ {myjobname} JOBNO to get the job number, then look into the project subdirectory RT_BP{JobNo}. Or you can use the UNIX find command on the object "JOB.1912664994.DT.1386960595.TRANS3".
by ArndW
Tue Dec 27, 2005 1:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: source code for KeyMgtResetValue
Replies: 8
Views: 2360

If it "hangs" then the record is locked by another process. While in the TCL environment do a "LIST.READU EVERY" and see if the there are any locks on the file's inode (you can see the inodes for SDKSequences in the project directory by doing a "ls -i" command. Perhaps you did an cntrl-c or even a k...
by ArndW
Tue Dec 27, 2005 1:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: source code for KeyMgtResetValue
Replies: 8
Views: 2360

Battleboy,

could you perhaps expand on "It's not working", perhaps with an error message?
The command should work unless the SDKSequences hashed file does not exist or the user executing the command doesn't have sufficient access rights.
by ArndW
Tue Dec 27, 2005 12:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with this Error
Replies: 6
Views: 1551

Check your transform "TRANS3" stage derivations. One of your derivations is doing a numeric operation on a column that does not contain numeric values. Usually a quick look at your derivations will show you the culprit; but if you feel like delving a bit deeper, you can look at your job's generated ...
by ArndW
Tue Dec 27, 2005 12:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dslictool usage
Replies: 8
Views: 3457

Throws arms up in surrender :)

looks like a bug...
by ArndW
Tue Dec 27, 2005 9:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ignoring Duplicates while reading from Seq File
Replies: 13
Views: 5906

Chowdary, this subject has been handled in this forum several times before. Also, it might be a good idea at this point in time to revisit your self-assessment in your user profile. If you create two stage variables in the following order: ColAIsTheSameAsLastRow IF LastColA = In.Col THEN 1 ELSE 0 La...
by ArndW
Tue Dec 27, 2005 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dslictool usage
Replies: 8
Views: 3457

I thought that it was used to cap the number of sessions; isn't that the program used to validate creating another connection? That's why I said that is show the number of licenses that DS thinks is in use. I'll need to check up on that.
by ArndW
Tue Dec 27, 2005 9:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOB LOG FILTER
Replies: 4
Views: 1083

I'm not at a DS installation right now, but I believe that the filter setting is global for the director and not local to a job; so you'll need to change your filter values to the higher number when viewing the one job. Have you tried setting the filter while in the log view for one job and seeing i...
by ArndW
Tue Dec 27, 2005 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dslictool usage
Replies: 8
Views: 3457

Re: dslictool usage

Hi , ...When I logged into the corresponding project through dssh ( UV environment ) , I found that 1 license is being utilized otherwise I am getting the below message...Phani How did you find this out in dssh? The correct display of the number of licenses that DataStage thinks are in use are disp...
by ArndW
Tue Dec 27, 2005 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error viewing sequential file.
Replies: 14
Views: 5937

Bala, you've identified your problem. You've declared the first_name column to be of fixed length of 16, yet your data has this column as a varchar column. You can get away with this in DataStage Server, but PX is very picky about using correct datatypes. You will also need to change the last name t...