In Sql I check if a table exist with this code:
IF NOT EXISTS (SELECT NAME FROM SYSOBJECTS
WHERE NAME = 'Plane')
CREATE TABLE Plane(Flight int)
How to do this check if a table not exist then i create it in Oracle because it throws exception if i try to create already existing table?
you can check the data dictionary for that table