- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Converting RMS files to Oracle 10g DB
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-15-2005 09:18 AM
тАО03-15-2005 09:18 AM
Converting RMS files to Oracle 10g DB
Please help.
Thank you in advance.
Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-15-2005 02:41 PM
тАО03-15-2005 02:41 PM
Re: Converting RMS files to Oracle 10g DB
>> Our developers looking into using SQLplus to convert our RMS file into Oracle 10g DB and they said it will take roughly 350-500 hours to do so.
Hmmm, plenty of time to look for new developers, and thus get the job done sooner.
Why not use SQL*loader? It is made for that job. Direct path load, simple load, whatever.
Or write an OCI program.
Or... use a relatively new Oracle option, the: EXTERNAL TABLE
Here is a simplified example:
First...
CREATE OR REPLACE DIRECTORY rms_dir AS '...';
CREATE TABLE rms_table (username VARCHAR (20)...)
ORGANIZATION EXTERNAL (
DEFAULT DIRECTORY rms_dir
ACCESS PARAMETERS ( records delimited by newline)
LOCATION ('rms.dat')
);
create imported_data as select * from rms_table;
Done.
You may want some SQL to commit in chunks.
But really... just use the Oracle provided SQLloader.
Cheers,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-22-2005 12:54 AM
тАО03-22-2005 12:54 AM
Re: Converting RMS files to Oracle 10g DB
Ian, any feedback on this? Did you come up with a solution that you can outline/share for the benefit of others?
Regards,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-22-2005 10:09 AM
тАО03-22-2005 10:09 AM
Re: Converting RMS files to Oracle 10g DB
You're correct about using SQL*Loader and they're and will be using that. This is all I know about this time. I did asked for the coversion script so that I can see how it's being done and I may share with you & the group for feedback, etc.
Thanks for following up on this matter.
Regards,
Ian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-24-2005 04:19 AM
тАО03-24-2005 04:19 AM
Re: Converting RMS files to Oracle 10g DB
Once this normalization process has occured one tool I've used in the past from the OpenVMS side is DTR Datatrieve. It can be used to prep the data... deliniate fields, unpack fields or change datatypes around... Basically get the data ready for the import process... RDB IMPORT or SQLloader the step that populates the database.
The key with this type of conversion is to nail down how the data will be funneled over to the SQL / relational environment.