|
Several options:
>> You can use SQL*plus (Oracle interactive SQL) to list the tables to a
text file. Depending on the datatypes, you may then be able to define
an RMS definition in CDD and use Datatrieve or the Rdb V3.1 LOAD
utility. It would go something like this:
SELECT * FROM your_table;
I've used this method before and it got me by for a demo. I had
some trouble with datatypes so this may not be the best long term
solution.
>> Worst case would be to write a simple program to read the test file and
parse out special characters (dollar signs or date hyphens) prior to
loading into Rdb.
>> Trifox will work as mentioned in .1. Also, Smartstar now has the
ability to copy Oracle table definitions AND data DIRECTLY from
Oracle to Rdb. This may be the best of all.
>> You could also write a program to read the oracle database (as opposed
to using SQL*plus) and create a RMS file which would/should load
more cleanly into Rdb. Also, there is probably no reason why you
couldn't read the Oracle database and write to the Rdb database
in the same program which would eliminate the RMS file completely.
-- gerry
|