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.
Search found 15603 matches
- 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
- Thu Dec 01, 2005 12:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Log
- Replies: 3
- Views: 1098
- 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...
- 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...
- 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...
- 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...
- 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
- 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
- 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...
- 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- 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)- 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
- 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...
- 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
- 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...