Search found 53125 matches
- Wed Nov 26, 2003 4:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can I use a Routine in another Routine??
- Replies: 3
- Views: 699
It's pedantry time again! :D The number of input arguments to a transform function does have an upper limit, of 254. If you get anywhere near that, I'll personally fly to where you are and slap you severely on the wrist! The number of return arguments for a transform function is fixed at one. Howeve...
- Wed Nov 26, 2003 4:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting a First line of a text file from UNIX to Datastage
- Replies: 3
- Views: 881
How exactly do you want to use this one line in your job sequence? I note that you specified a Routine Activity. If you use a Routine that incorporates code like that Vincent suggested, make sure that the value of the Output argument is assigned to the return variable (Ans). Your syntax does not wor...
- Wed Nov 26, 2003 4:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HELP FOR SPECIAL CHAR...
- Replies: 3
- Views: 1228
DS 7.0 PX gives you the choice of TWO (count them!) Transformer stages. One is the original PX Transformer stage, the new one is called a BASIC Transformer stage, and works exactly like the server job Transformer stage (allowing the full gamut of BASIC functions and the like). I have to use the word...
- Tue Nov 25, 2003 5:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS- Set "Import MetaData-Browse Directories" list
- Replies: 2
- Views: 812
- Tue Nov 25, 2003 5:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: When to use Basic and when to use GUI
- Replies: 8
- Views: 1689
I agree pretty much 100% with Kim's last post. The programming language is there for when you need to tweak the way that something works because DataStage solution is not absolutely what you require. The same can be said for BuildOps and CustomOps in the parallel environment, custom routines in the ...
- Tue Nov 25, 2003 5:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oddity in Hash Files
- Replies: 5
- Views: 1318
Well, it may "cause problems", but you have to learn to live with it. That's because "position" is how columns are identified in records in hashed files; by their ordinal position. The hashed file storage mechanism is precisely a delimited string; all values are stored as text, and the location of a...
- Tue Nov 25, 2003 5:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: convert from number to binary
- Replies: 9
- Views: 2060
- Tue Nov 25, 2003 5:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can lookup key be a range
- Replies: 4
- Views: 1510
It depends on what type of lookup stage you are going to use: OCI/ODBC: You have to define the appropriate SQL statement in the stage. You will have to supply the appropriate columns in the key expressions. Hash file: Not without some work. Unless performance is an issue, this solution is highly cu...
- Tue Nov 25, 2003 7:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HELP FOR SPECIAL CHAR...
- Replies: 3
- Views: 1228
Hi, 1. if you have NLS installed you should have no problem getting the special characters. if you want to remove them you can use trim/ereplace functions. you can test hte ascii values fo those chars with the seq function. if your problem is more complex maybe you'll need to elaborate on the issue...
- Tue Nov 25, 2003 7:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: (RESOLVED) rename of designer stages font in size 50 or more
- Replies: 14
- Views: 2305
- Tue Nov 25, 2003 5:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting from a hash file in numeric order.
- Replies: 8
- Views: 3853
If you want the SSELECT filevariable statement to perform a numeric sort of the keys, change the definition of @ID in the file dictionary so that it is right-justified rather than left justified. For example:
Code: Select all
UPDATE DICT hashedfilename SET FORMAT = '10R' WHERE @ID = '@ID';- Mon Nov 24, 2003 6:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using Null-Handling in Modify Stage
- Replies: 2
- Views: 6859
- Mon Nov 24, 2003 6:06 pm
- Forum: Data Quality Best Practices
- Topic: matching
- Replies: 2
- Views: 8874
XA means the "master record" in a block of probable duplicates. It tends to have the highest composite weight. DA means one of the other records in a block of probably duplicates. RA means a "residual", a record with no probably duplicates. You have to remember to include these in your survivorship ...
- Sun Nov 23, 2003 4:46 pm
- Forum: Data Quality Best Practices
- Topic: final file from integrity to datastage
- Replies: 5
- Views: 2765
The pattern characters were generated during the investigation phase, to allow you to see what kinds of tokens exist in your data. After all phases (investigation, standardization, matching and survivorship) all information typically has been carried through. All you need to do is to create another ...
- Sat Nov 22, 2003 7:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge Error
- Replies: 6
- Views: 1420