I am create a tool to migration all data and schema from MsSqlServer to Oracle.
The .Net library used is EntlibContrib.Data.OdpNet.
While it execute CREATE table:
OracleDatabase db = new OracleDatabase(connectionString);
string createDDL = "CREATE TABLE APPInvoiceItems (ABC RAW(16));";
db.ExecuteNonQuery(createDDL);
I got an exception:
ORA-00931: missing identifier
ORA-06512: at "SYS.DBMS_UTILITY", line 156
ORA-06512: at line 1
I have searched several topics but wasn't able to find a solution