Search found 6797 matches

by DSguru2B
Wed Jul 05, 2006 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle table was locked when stopping a job in director
Replies: 15
Views: 3356

You are setting the transaction size to 1000 with the update action of "insert new or update existing"?
Arent you getting any warning message that says, that the size is set to 1 ?
by DSguru2B
Wed Jul 05, 2006 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server File System Getting Full
Replies: 8
Views: 1714

Get more space, especially if you are not using the same file system for your staging files. Keep purging your log files. You must be creating "in account" humongous hashed files. That might be the main culprit. Just get more space.
by DSguru2B
Tue Jul 04, 2006 11:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: eliminting certain rows
Replies: 3
Views: 805

Re: eliminting certain rows

thatiprashant wrote:hi,

everytime the transaction of any of these products go thru it will create a respective code

prashant


Who creates those codes. Do you create them?
Well regardless, let them be there, pass them through a transformer and put the constraint not equal to those two codes.
by DSguru2B
Tue Jul 04, 2006 10:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle table was locked when stopping a job in director
Replies: 15
Views: 3356

IMHO, when you absolutely have to stop a job which is accessing a database, dont use the director, give your dba a call and ask him to kill that thread accessing the database. This will send a "connection lost" signal to datastage which will then abort right away. As Craig mentioned, at times, the c...
by DSguru2B
Tue Jul 04, 2006 9:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Failed to set named security
Replies: 3
Views: 996

Does your id have the right priviledges to set the environment variables?
by DSguru2B
Tue Jul 04, 2006 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: When to use bulk Load?
Replies: 5
Views: 1293

The bulk loader works on its own. It has a message file that it writes to. And it writes every step, even its commits. That file is very usefull if any problem occurs. The DS log doesnt help much has the only work it is doing is creating the command files to invoke DB2's load utility. As per the OP'...
by DSguru2B
Tue Jul 04, 2006 9:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Transformer Stage and all other stage
Replies: 7
Views: 5054

A basic transformer in px, its like putting a corvette in a school zone. If you absolutely have to, only then use it. I think you are better off trying to go through vincent's blogs or doing a little bit more searching on this site.
by DSguru2B
Mon Jul 03, 2006 8:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH FILE BROWSING
Replies: 6
Views: 967

Welcome Aboard Access the hashed file via universe stage as a universe file, provided it was created "in account", and run sql queries on it. If it was created outside the account, then use SETFILE to create a VOC entry and use that name to access the hashed file via the universe stage. That is much...
by DSguru2B
Mon Jul 03, 2006 8:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Most efficient way to check a range of character values
Replies: 10
Views: 1908

I suspect a "range conversion" would be fairly slick also. Oconv(InLink.TheColumn, "RA,M") Particularly if multiple ranges need to be tested. Oconv(InLink.TheColumn, "RA,M;V,W") I believe that the OCONV representation of the R code that i was talking about. Right...
by DSguru2B
Mon Jul 03, 2006 8:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic email body & send with Notification Activity
Replies: 9
Views: 8860

'cat' will only display the contents of the file. If the file has the values concatenated together then yes it will, but thats in the unix world. Your on windows. I suggest coding all this in a basic routine. You code everything to get it in a way you want and then call the DSSendMail() function. Re...
by DSguru2B
Mon Jul 03, 2006 12:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Most efficient way to check a range of character values
Replies: 10
Views: 1908

O yes. Completely forgot that while using > and < operators on characters it implicitly changes them to its ascii. So there you go, my suggestion is already moot. Craig, look at the R code (Range function). You can specify the range, the lower bounds and upper bounds and the number of ranges. That m...
by DSguru2B
Mon Jul 03, 2006 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: [General repository interface 'other error']
Replies: 4
Views: 4508

Go into the director and check the status of that job. A code -99 means that its not in a runnable state. Recompile it and try it again.
by DSguru2B
Mon Jul 03, 2006 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Most efficient way to check a range of character values
Replies: 10
Views: 1908

What other methods have you tried. If its a range, try changing it into ascii and checking that range.
For example, Alphabets are between 065 - 090 for Uppercase and 097 - 122 for lowercase. That would be much faster.
by DSguru2B
Mon Jul 03, 2006 8:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs not firing
Replies: 11
Views: 2091

I just checked it today, to run from keyboard, open the job and press Ctrl+F5. See if that works.
A really strange problem :roll:
by DSguru2B
Mon Jul 03, 2006 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Stage by itself
Replies: 8
Views: 2486

No, actually, i would have used the command stage myself. But since you were experiencing some problems with it, i suggested an alternative method.