tags:

views:

20

answers:

2

Hi,

I have devloped website using ASP and Sql Server 2005. I have not used any Stored Procedure and Views [All the queries are passed from the asp page]. Now i need to convert the database from SQL Server 2005 to Oracle 9i.

Will it takes huge changes in my code? Is there any tool to convert Sql Server 2005 query to Oracle query?

A: 

This seems kind of hard to answer. You could have Sql server specific queries, or standardized queries. It will take some tweaking, but it shouldn't be too bad if your app is well designed.

bwawok
A: 

I don't think we can answer that without knowing how your application is designed. Did you build your data access tier or did you use an ORM? Any user defined types? Etc.

Here's an article I found on how to migrate a SQL 2005 database to Oracle 11g. This may help by pointing you in the right direction.

http://st-curriculum.oracle.com/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm

EDIT: Here's a link to a useful page that compares SQL Server and Oracle (along with a few other vendors') sql syntax. This should be useful in helping you determine how much work will be required converting your app from using SQL Server to Oracle.

David Hoerster
I have not build data access layer separately. But all the query related codes are within a single page (like Process.asp). I don't know much about oracle queries. In terms of sql statements (query) Is there major difference between Oracle and Sql server? (Like Joins i have used lots of join condition)
Mahesh Kumar
Added a link to my answer to a page that compares SQL syntax between MSFT, Oracle and a few other vendors. This should be helpful in determining how easy your migration will be.
David Hoerster