Search found 15603 matches
- 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...
- 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...
- 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
- 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...
- 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
- Tue Dec 27, 2005 2:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help with this Error
- Replies: 6
- Views: 1551
- 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...
- 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
- 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 ...
- 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
- 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...
- 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
- 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...
- 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...
- 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...