Re: Code Conversion from MSSQL into Oracle

2003-12-15 Thread akshay
oracle provides migration toolkit for this - Original Message - To: Multiple recipients of list ORACLE-L [EMAIL PROTECTED] Sent: Saturday, December 13, 2003 6:14 AM Are there any TOOLs for converting Sample Code (like the following) from MSSQL into Oracle? SAMPLE :-

Re: Code Conversion from MSSQL into Oracle

2003-12-12 Thread Akshay Kumar
oracle provides a toolkit. - Original Message - From: VIVEK_SHARMA To: Multiple recipients of list ORACLE-L Sent: Friday, December 12, 2003 1:14 AM Subject: RE: Code Conversion from MSSQL into Oracle Are there any TOOLs for converting Sample Code

RE: Code Conversion from MSSQL into Oracle

2003-12-12 Thread VIVEK_SHARMA
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'

RE: Code Conversion from MSSQL into Oracle

2003-12-11 Thread Shiva Maran
try oracle work bench from Oracle. HTH ShivaM -Original Message-From: VIVEK_SHARMA [mailto:[EMAIL PROTECTED]Sent: Thursday, December 11, 2003 5:19 PMTo: Multiple recipients of list ORACLE-LSubject: Code Conversion from MSSQL into Oracle Are there any TOOLs for

Re: Code Conversion from MSSQL into Oracle

2003-12-11 Thread Tim Gorman
Title: Re: Code Conversion from MSSQL into Oracle 10 years ago or so, I wrote a 105 line script for the UNIX sed (a.k.a. stream editor) command to convert Teradata BTEQ scripts into Oracle SQL*Plus. Painful, yet thrilling, and it took only about a day of concentration with the OReilly Awk

RE: Code Conversion from MSSQL into Oracle

2003-12-11 Thread Hallas, John, Tech Dev
Steve Perry from this list produced a perl script to read a import file (rows=n) and produce formatted DDL. Whilst it is not perfect (as Steve agrees) it does give a good basis of where to start with processing and transforming a text input stream into a text output stream whilst making a small

RE: Code Conversion from MSSQL into Oracle

2003-12-11 Thread VIVEK_SHARMA
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'