Are you getting the error message when connecting to "ETL" or to "testprogress"? Do either of them work?
Does Openlink have another configuration file that might contain errors? I'm not sure what you mean with regards to the DataStage license - has it expired on your test system?
Search found 15603 matches
- Thu Mar 02, 2006 9:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting error while tesing ODBC connection
- Replies: 10
- Views: 6057
- Thu Mar 02, 2006 5:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting error while tesing ODBC connection
- Replies: 10
- Views: 6057
- Thu Mar 02, 2006 5:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can i remove duplicate rows
- Replies: 9
- Views: 1945
- Thu Mar 02, 2006 5:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get diff between two dates in routine
- Replies: 12
- Views: 7066
Craig has already pointed out that your program is doing a lot more than it needs to. Since you do an OCONV() on D1 and D2 to get displayable dates, the assumption is that both D1 and D2 are already in internal format. ABS(D2-D1) will give you the difference in days between the two dates, and if you...
- Thu Mar 02, 2006 5:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merge stage in server edition
- Replies: 6
- Views: 1284
- Thu Mar 02, 2006 4:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to import table definitions using Ascential 7.5
- Replies: 4
- Views: 1652
- Thu Mar 02, 2006 4:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to call the PX routine in job control of DS PX job
- Replies: 9
- Views: 3088
Yoganand, as Ray has already pionted out, you need to do some complicated work to make the DataStage BASIC or server engine call an external routine in C++. You will need to define the GCI parameters and re-link the dssh/uvsh executable. There is a manual available on IBM's website describing how to...
- Thu Mar 02, 2006 4:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can i remove duplicate rows
- Replies: 9
- Views: 1945
Since your source is a flat file, you can pre-process this using "sort -u" on UNIX or if your server has a package like MKS Toolkit installed. If not, you can do a normal DOS sort (which won't remove duplicates) and then use a stage variable in a transform to store the previous row's value and then ...
- Thu Mar 02, 2006 2:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: issue while Migrating Portugese data
- Replies: 4
- Views: 1452
The character sets involved all support extended characters, but they place them at different codepoints, so using the wrong definitions makes DataStage convert them from one to another representation. Set your NLS_LANG to the correct definition (to that which your database is using) and it should w...
- Thu Mar 02, 2006 2:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: issue while Migrating Portugese data
- Replies: 4
- Views: 1452
Venky, do you see where your conversion problems are occuring? You are reading in 8859-1 data (Latin-1) and then telling DataStage that the Oracle Database is in ASCL_PC860 / UTF-8. But your environment variable says that the oracle database is in Latin-1 again ("WE8ISO8859P1") so your data is being...
- Thu Mar 02, 2006 1:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: add_to_heap() Error on Digital Unix
- Replies: 1
- Views: 400
Hello Giang, DataStage seems to think that it doesn't have enough disk space, so I would check the location that your UVCONFIG points to for temporary disk space (the default is /TMP) and I think that there was another variable path in there for small files as well, but am no longer 100% of the name...
- Thu Mar 02, 2006 1:23 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: issue while Migrating Portugese data
- Replies: 4
- Views: 1452
- Thu Mar 02, 2006 1:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Userstatus and User Variable length limit
- Replies: 2
- Views: 695
- Wed Mar 01, 2006 12:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting error while tesing ODBC connection
- Replies: 10
- Views: 6057
- Wed Mar 01, 2006 9:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: String data code page conversion error
- Replies: 3
- Views: 3025
It looks like column 4 (LAST_NAME) has a character in that line that cannot be mapped from MS1252 and might not even be legal in that representation. Can you see what the contents of that field for that row are in the database? Also, what are the Oracle NLS settings for your session (check the ENV v...