Search found 15603 matches

by ArndW
Thu Jun 09, 2005 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Connection Name as JOb Parametr
Replies: 3
Views: 723

snassimr,

I am assuming that you have used parameters in jobs before, so you cannot be asking how to declare and utilize them in job design and at runtime, so you must be asking something else; could you please explain where you are encountering difficulties?
by ArndW
Thu Jun 09, 2005 1:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compiler or Interpreter?
Replies: 10
Views: 3184

Ray - the code part is a new one to me, I recall having to FNUXI ported code (after the runtime engine tells you to; so at least the interpreter noticed that something was wrong with the magic number). I guess the enhancement isn't technically difficult, but as you stated it would slow down the proc...
by ArndW
Thu Jun 09, 2005 1:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Confused about Creation of Lookup File Set
Replies: 9
Views: 3180

Vmcburney, Thanks for the update on your performance testing, which was more rigorous than my quickie attempt. My tests were on a pretty hefty 8 CPU AIX box and I was using a 4-node configuration; so it is likely that I had enough memory in the system to not get into swap mode, so the differences in...
by ArndW
Thu Jun 09, 2005 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: day light saving timestamp
Replies: 1
Views: 878

Nope, no standard routine exists, the complexities of which places switch when to and from daylight savings time were beyond the scope of the team that put together the utilities - but they did put in Swatch time :)
by ArndW
Thu Jun 09, 2005 1:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Additional Connection Options in Oracle Enterprise Stage
Replies: 4
Views: 1880

Mohan,

please try it and tell us if it works.
by ArndW
Thu Jun 09, 2005 1:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing DSEngine/dsdlockd.log
Replies: 15
Views: 9981

Vinodlakshmanan, a deadlock process is one which looks for orphaned locks and or processes associated with a program system. Usually this type of program can be found with Databases, since they use a lot of locks and do suffer from orphaned processes, but other types of applications require the same...
by ArndW
Thu Jun 09, 2005 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Additional Connection Options in Oracle Enterprise Stage
Replies: 4
Views: 1880

sathyanveshi,

it is used to establish additional options for the connection to Oracle. At my current site, we add in OracleArraySize to increase the Oracle array size. Other attributes that are session specific can also be put into this space.
by ArndW
Thu Jun 09, 2005 12:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error message Cannot find job ...
Replies: 1
Views: 804

Good morning Ran, there are actually two parts to your question - the first is getting rid of the symptom of an orphan job and the other is finding out how it happened so that you can avoid the issue in the future. Most likely your repository has some messed up pointers, you can repair this by going...
by ArndW
Thu Jun 09, 2005 12:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH File Lookup is very Slow
Replies: 10
Views: 3064

bapajju, The number of columns is irrelevant to lookup speed, the number of bytes of data in those columns is. It will always take longer to transfer 10 columns filled with 1000 character per column than it will to transfer 10 columns of only 1 character per column. That said, it is always best to r...
by ArndW
Wed Jun 08, 2005 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inconsistence Incoming data
Replies: 4
Views: 1183

Perwezakh, if you define a datastage job that takes the .csv file and outputs to another sequential file, but in this file's definition you specify "fixed length" DataStage will pad out any varchar or numeric columns to their maximum length per the metadata and you don't have to do any manual transf...
by ArndW
Wed Jun 08, 2005 8:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation
Replies: 2
Views: 825

pandu80, I think your approach is lacking a bit. For instance, the string 'Hello World' would be considered a number, as would any non-empty string (for different reasons). I don't have a ds system to check right now, but I would use the NUM(<value>) function to start with. If you want a detailed ch...
by ArndW
Wed Jun 08, 2005 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Connection Name as JOb Parametr
Replies: 3
Views: 723

Yes, just specify the #DSNIdentifier# in the appropriate field in the ODBC stage.
by ArndW
Wed Jun 08, 2005 4:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Iconv / Oconv function - MCP code
Replies: 2
Views: 2688

Paul, that was in interesting question, I'd always wondered about it but never really looked into it. The answer is: Characters 1-31, and 127, and 129-159 are unprintable. I did a quickie function in datastage to test this that you can use as well: FOR i = 1 to 255 IF (OCONV(CHAR(i),...
by ArndW
Wed Jun 08, 2005 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Distributed Hash Files
Replies: 14
Views: 4450

Damn - should have checked about the DELETE.DF before posting. Ray is right, it doesn't exist. What you need to do is DEFINE.DF <distfile> REMOVING <partfile> for all of your partfiles, when the last valid partfile is removed the system will remove your master file definition. The partfiles can then...
by ArndW
Wed Jun 08, 2005 3:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compiler or Interpreter?
Replies: 10
Views: 3184

There are some really interesting OPCODES out there It is actually possible to decompile the program and get almost everything back out except for variable names in common blocks. Plus a CASE won't go back because DS actually treats it as a IF-THEN-ELSE construct. I wrote a decompiler a while back -...