Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sql server GO equivalent in oracle

I am working on migration script for Oracle, I need to change table structure and then populate it with data.

I would like to do the structure changes first and then do the data.

In SQL Server I would use GO to separate statements

Is there an SQL Server GO command equivalent in Oracle?

like image 293
Matas Vaitkevicius Avatar asked Apr 30 '15 07:04

Matas Vaitkevicius


1 Answers

It's ; and /

select * from user_tables;
/
like image 170
Matas Vaitkevicius Avatar answered Sep 22 '22 14:09

Matas Vaitkevicius