Search found 15603 matches
- Thu Oct 27, 2005 8:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequential file parsing.
- Replies: 5
- Views: 1004
vsanghvi, I intentionally don't complete code snippets - that way you need to look at it and understand what it does {so that you can complete it}. The code given will do what your initial query asked. Now your requirements are to ...I need to reset the variable again and again as the file might hav...
- Thu Oct 27, 2005 8:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: max length of project name in AIX
- Replies: 8
- Views: 1835
- Thu Oct 27, 2005 1:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To findout Which job is loading a particular Hashfile?
- Replies: 3
- Views: 1014
- Wed Oct 26, 2005 2:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: limitations on handling larger files
- Replies: 7
- Views: 1899
- Wed Oct 26, 2005 2:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding the Hashed File Stage Column Length
- Replies: 6
- Views: 1382
DeepakCorning, that's the way it works. Declare it as a integer column reading from a text file and write it to a hash file stage as a char(10) and read it in another stage as a decimal(10,2) and it will still contain the original contents, regardless of it was "hello there" or Japanese text or "1.2...
- Wed Oct 26, 2005 12:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Function to search a space character in the string
- Replies: 7
- Views: 1860
Shivan, please, please, please RTFM ! I have no problem pointing you in the correct direction but if you are not willing to look up the syntax yourself in the handbook or even do a search on this forum to see how it has been used then there is not a chance that I will do so for you. (a) Convert() ha...
- Wed Oct 26, 2005 12:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: limitations on handling larger files
- Replies: 7
- Views: 1899
Shivan, You can see that generally DS handles large volumes. Most of us deal with files > 100Mb daily, so the opinions of your colleagues don't really affect us much; since we disprove their assertions each time we load or extract large amounts of data. 1. Sequential files. If you have limited your ...
- Wed Oct 26, 2005 12:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Loading multiple tables - Looking for Best Practices
- Replies: 4
- Views: 1546
If your rule is to not commit any data unless all input criteria are satisfied just playing with the builtin COMMIT options wouldn't help you. It might make sense in your case to write all your computed information to a sequential staging file, where all related records are written on a record toget...
- Wed Oct 26, 2005 12:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Function to search a space character in the string
- Replies: 7
- Views: 1860
- Wed Oct 26, 2005 12:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to update a sequential file
- Replies: 6
- Views: 1766
Since positioning in a sequential file is not a good idea or practicable, you will need to process your data by reading through the source into a copy, modifying those records that have changed; then renaming your new file to overwrite the old. Since this is a column update, just about any database ...
- Wed Oct 26, 2005 11:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How do I configure for multiple network interfaces on SMP?
- Replies: 27
- Views: 9063
Ultramundane, This is what I have talking about in my previous posts. By declaring different logical databases in PX I go through different subnets to listeners on the same box and same database. It would be nice to see PX automatically detect each physical interface and see which paths to which lis...
- Wed Oct 26, 2005 11:52 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: max length of project name in AIX
- Replies: 8
- Views: 1835
- Wed Oct 26, 2005 11:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Character Translator for data files
- Replies: 3
- Views: 1215
saadmirza, The builtin functionality is called 'NLS' and there are hundreds of posts in this forum alone discussing aspects of this. DataStage will only translate at a character set level, but there are published conversion rules on the internet that explain what the normal latin alphabet representa...
- Wed Oct 26, 2005 11:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Function to search a space character in the string
- Replies: 7
- Views: 1860
- Wed Oct 26, 2005 11:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: limitations on handling larger files
- Replies: 7
- Views: 1899
Shivan, even a cursory look at some of the posts mention 'hundreds of thousands' and 'millions' of rows; so the answer to your question is - "Yes, DataStage has limits, but they quite high" {Often the OS limits files to 2Gb, but that can be overridden}. At my site a 100Mb file is usually used as a s...