Search found 15603 matches

by ArndW
Thu Dec 01, 2005 12:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SOX Controls on DataStage Access
Replies: 11
Views: 2684

Dalek (btw, can you climb stairs?),

thanks for that information; it means that the implementation at the site that I am at needs to be configured correctly.
by ArndW
Thu Dec 01, 2005 12:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log
Replies: 3
Views: 1098

If you look at the options that the UNIX command "dsjob" gives you I think it would be best to incorporate the checking for aborted/incomplete jobs and e-mailing of job logs in a UNIX shell script.
by ArndW
Thu Dec 01, 2005 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to migrate data from unidata to oracle
Replies: 20
Views: 5254

Vaibhav, Immediate help costs money, this is a volunteer site. If you have a contract with Ascential or a service provider you might get help there. Your problem description was vague, which is probably why you haven't gotten a response. And since you specified "urgent" it reminded me that I need to...
by ArndW
Thu Dec 01, 2005 11:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS
Replies: 4
Views: 2239

there is no reason to install NLS in this case, none at all! I don't have any Oracle access at the moment, but the solution/problem lies in your session environment settings for Oracle - they are causing the character conversions. I am sure someone more knowledgeable will jump in later with the deta...
by ArndW
Thu Dec 01, 2005 11:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SOX Controls on DataStage Access
Replies: 11
Views: 2684

That's a tough one to do. How about changing the DataStage port and then using some OS or software mechanism to ensure that only the Citrix program can access that port - ensuring that some firewall between client and server blocks that port whilst it is visible only from one host or even program. I...
by ArndW
Thu Dec 01, 2005 10:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32
Replies: 2
Views: 1054

Both Google and Yahoo! retrieve over 1.12 Million hits for the search phrase of CRC32! Doing a cyclical redundancy check (CRC) on a text string or file will return a number - it used to be a 16 bit number but is now a 32 bit number. Changing just one byte of a file will result in the CRC32 result c...
by ArndW
Thu Dec 01, 2005 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValueConcurrent sequence number reset to 1
Replies: 5
Views: 1601

kab123,

the source of these programs is visible to you - open up the job in the Manager and you will see a section of code that checks if the file exists and if not, creates a type 2 hashed fille called SDKSequences in the local project directory.
by ArndW
Thu Dec 01, 2005 7:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find stage missing in runtime
Replies: 3
Views: 1075

cherry,

this is not the way DS usually works. Stages are compiled into a job and don't go missing at runtime. The possible exception is user-defined stages. The best way to find out which one is missing is to run the job and look at the error messages in the Director's log file.
by ArndW
Thu Dec 01, 2005 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UtilityMessageToLog error
Replies: 3
Views: 2155

Mahesh, I gather you were not able to follow Ray's suggestion and look at the code, which is visible in the Manager in Routines -> sdk -> Utility -> UtilityMessageToLog. That is unfortunate, because had you done so you would have seen that the last line in the routine is "Ans = 1". It will always re...
by ArndW
Wed Nov 30, 2005 12:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Parameters as Input argument to a routine
Replies: 8
Views: 1972

Code: Select all

#path#:'/':#dir#:'/':abc.txt
by ArndW
Wed Nov 30, 2005 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Parameters as Input argument to a routine
Replies: 8
Views: 1972

When you use parameters as arguments to a routine call in a derivation, you cannot use the "#" quote characters. In your case the derivation will become something like


Code: Select all

MySubroutine(path:'/':dir:'/':abc.txt)
by ArndW
Wed Nov 30, 2005 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Parameters as Input argument to a routine
Replies: 8
Views: 1972

Some places requre quoting the parameters with "#" and some places won't allow it.

Where and how are you trying to use these values?
by ArndW
Wed Nov 30, 2005 10:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creation of static hashed file runtime
Replies: 8
Views: 3021

All hashed files allow the 64bit option (I'm certain about all except the b-tree). The modulo imposes a very large performance hit if it is chosen too low, this is not the case when it is set too high. The downside of specifying a large modulo is that it reserves disk space even with empty files. So...
by ArndW
Wed Nov 30, 2005 10:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row generator and column generator
Replies: 3
Views: 1387

One of the great options you have in PX is what sort of data to generate. If you right-mouse click on one of the columns and edit the row you can choose what sort of data to populate. You can generate random values or set a list of possible values and loop through the list.
by ArndW
Wed Nov 30, 2005 10:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Defining Basic Variable
Replies: 4
Views: 940

Poorna, DataStage has no real concept of datatypes and variables are not declared. Variables are typed according to the operations performed on them. In your case the value of the parameter is being set to parmPartitionId -1 which is a mathematical operation and thus it is considered to be a numeric...