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

Home -> Community -> Mailing Lists -> Oracle-L -> Code Conversion from MSSQL into Oracle

Code Conversion from MSSQL into Oracle

From: VIVEK_SHARMA <VIVEK_SHARMA_at_infosys.com>
Date: Sat, 13 Dec 2003 03:14:26 -0800
Message-ID: <F001.005D9CF4.20031213031426@fatcity.com>

Are there any TOOLs for converting Sample Code (like the following) from MSSQL into Oracle?

SAMPLE :-


DECLARE @entity_id char(32), @branch_id char(9)

DECLARE cur_temp_GEMT CURSOR FOR select

         branch_id,entity_id from GEMT where other_party_name='' and entity_type='D'

OPEN cur_temp_GEMT

FETCH NEXT FROM cur_temp_GEMT INTO

@branch_id,@entity_id

WHILE @@FETCH_STATUS = 0 BEGIN UPDATE GEMT SET other_party_name=(SELECT name from GEAT where branch_id =@branch_id and entity_id=@entity_id
and addr_type='1' and entity_type='D') where entity_id=@entity_id and branch_id = @branch_id

FETCH NEXT FROM cur_temp_GEMT INTO

@branch_id,

@entity_id

END CLOSE cur_temp_GEMT

DEALLOCATE cur_temp_GEMT  

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.net
-- 
Author: VIVEK_SHARMA
  INET: VIVEK_SHARMA_at_infosys.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Sat Dec 13 2003 - 05:14:26 CST

Original text of this message

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