Re: Migrate SQL Server Stored Procedures
From: Lloyd Sheen (sqlguyremoveallofthis_at_tostopspamhotmail.com)
Date: 06/17/04
- Next message: Vishal Parkar: "Re: User defined data types"
- Previous message: Gregory A. Larsen: "Re: User defined data types"
- In reply to: usman: "Migrate SQL Server Stored Procedures"
- Next in thread: usman: "Re: Migrate SQL Server Stored Procedures"
- Reply: usman: "Re: Migrate SQL Server Stored Procedures"
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 17 Jun 2004 14:37:17 GMT
There is no quick method to migrate procedures to and from SQL Server to
Oracle. SQL Server uses Transact-SQL as a language and Oracle uses PL/SQL.
Those two languages are as different as english and chineese.
There are many constructs in Oracle including packages that SQL Server would
never understand. Many stored procedures in SQL Server are just select
statements that have been compiled to store the access plan. Oracle must
return a cursor as a parameter to get the same functionallity so your VB
program would have to access the information in a different manner.
What you are asking is not easy. If all you are doing is returning
information then it would be better (not more efficient) to use standard
ANSI selects to do your database access.
Lloyd Sheen
"usman" <usman@isf.com.pk> wrote in message
news:e6H26CHVEHA.2520@TK2MSFTNGP12.phx.gbl...
> Dear Sir,
>
> How can I migrate all SQL server Stored Procedures to Oracle adn Oracle
> to SQL Server? I want to code in VB 6.0 or VB.Net Please tell me Can I
> move all stored procedures using DTS if yes then How can ?
>
> Thanks very much,
>
> usman
>
> *** Sent via Devdex http://www.devdex.com ***
> Don't just participate in USENET...get rewarded for it!
- Next message: Vishal Parkar: "Re: User defined data types"
- Previous message: Gregory A. Larsen: "Re: User defined data types"
- In reply to: usman: "Migrate SQL Server Stored Procedures"
- Next in thread: usman: "Re: Migrate SQL Server Stored Procedures"
- Reply: usman: "Re: Migrate SQL Server Stored Procedures"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|