dbTalk Databases Forums  

Importing sql server 7/2000 database to Oracle

comp.databases.oracle.tools comp.databases.oracle.tools


Discuss Importing sql server 7/2000 database to Oracle in the comp.databases.oracle.tools forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
E Sullivan
 
Posts: n/a

Default Importing sql server 7/2000 database to Oracle - 02-24-2004 , 10:07 AM






Hi,

Is it possible to import a MS sql server 7 or 2000 database into Oracle?
Also, if this is possible, would it be better to just import tables and no
stored procedures?

thanks,

Ellie




Reply With Quote
  #2  
Old   
Daniel Morgan
 
Posts: n/a

Default Re: Importing sql server 7/2000 database to Oracle - 02-24-2004 , 10:13 AM






E Sullivan wrote:

Quote:
Hi,

Is it possible to import a MS sql server 7 or 2000 database into Oracle?
Also, if this is possible, would it be better to just import tables and no
stored procedures?

thanks,

Ellie
What do you mean by "import"?

If you mean dump the data as a delimited text file and use SQL*Loader.
Yes.

But do keep in mind you will need to translate some data types and
autonumbering columns do not exist.
--
Daniel Morgan
http://www.outreach.washington.edu/e...ad/oad_crs.asp
http://www.outreach.washington.edu/e...oa/aoa_crs.asp
damorgan@x.washington.edu
(replace 'x' with a 'u' to reply)



Reply With Quote
  #3  
Old   
E Sullivan
 
Posts: n/a

Default Re: Importing sql server 7/2000 database to Oracle - 02-24-2004 , 10:59 AM



Thanks, Daniel. Yes, that is what I want. Now about the autonumbering
columns: as long as we aren't going to add to the database and expect
autonumbering, I can still have that column, right? That's what it sounds
like.

thanks again.

"Daniel Morgan" <damorgan@x.washington.edu> wrote

Quote:
E Sullivan wrote:

Hi,

Is it possible to import a MS sql server 7 or 2000 database into Oracle?
Also, if this is possible, would it be better to just import tables and
no
stored procedures?

thanks,

Ellie

What do you mean by "import"?

If you mean dump the data as a delimited text file and use SQL*Loader.
Yes.

But do keep in mind you will need to translate some data types and
autonumbering columns do not exist.
--
Daniel Morgan
http://www.outreach.washington.edu/e...ad/oad_crs.asp
http://www.outreach.washington.edu/e...oa/aoa_crs.asp
damorgan@x.washington.edu
(replace 'x' with a 'u' to reply)




Reply With Quote
  #4  
Old   
Daniel Morgan
 
Posts: n/a

Default Re: Importing sql server 7/2000 database to Oracle - 02-24-2004 , 03:27 PM



E Sullivan wrote:

Quote:
Thanks, Daniel. Yes, that is what I want. Now about the autonumbering
columns: as long as we aren't going to add to the database and expect
autonumbering, I can still have that column, right? That's what it sounds
like.

thanks again.
You can indeed. Just make the columns a NUMBER type as in:

CREATE TABLE t (
old_autonumbering_col NUMBER,
....);

--
Daniel Morgan
http://www.outreach.washington.edu/e...ad/oad_crs.asp
http://www.outreach.washington.edu/e...oa/aoa_crs.asp
damorgan@x.washington.edu
(replace 'x' with a 'u' to reply)



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.