Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: SQL Server to Oracle migration

Re: SQL Server to Oracle migration

From: Daniel A. Morgan <damorgan_at_exesolutions.com>
Date: Mon, 28 Jan 2002 16:43:56 +0000
Message-ID: <3C557FCC.2C7334D9@exesolutions.com>


Anything you can code in TSQL you can code in PL/SQL. That said ... the syntax will be different and the architecture of how you go about it could be very different. What you are trying to do is not trivial if you want performance and scalability. Get someone to help you.

Daniel Morgan

mark wrote:

> I'm in the process of trying to migrate a database from MS SQL Server
> to Oracle. Most of my experience has been with MySQL and so stored
> procedures are a whole new ball of wax for me. There is one aspect of
> the migration that is giving me particular difficulties. At several
> points, the application that accesses the MS database (via ODBC) makes
> a call to a stored procedure with multiple select statements. In
> other words---
>
> Application
> function(){
>
> {call procedure_x()}
> store results
>
> if(procedure_x() has more results )
> get more results
> store results
>
> if(procedure_x() has more results )
> get more results
> store results
>
> }
>
> MS SQL Server Database
> procedure_x(){
>
> select ... from TABLE A WHERE ...
> select ... from TABLE B WHERE ...
> select ... from TABLE C WHERE ...
> }
>
> Is there any way to code procedure_x() in PL/SQL ? For the most part
> I've
> been dealing with single select statements in the MS database and this
> one has
> really thrown me for a loop.
>
> Thanks very much for any help!
>
> Mark
Received on Mon Jan 28 2002 - 10:43:56 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US