I have created an oracle project in VS2013. I created a "Create Table" script in the VS project. called Scriptfilename.sql The project is connected to an Oracle Server with database names "databasename".
CREATE TABLE "FRED"
( "FIELD1" NUMBER(1,0),
"FIELD2" DATE,
);
I do a RUN ON of the script and select the connected database.
I get the following in the Output Window.
Connected.
----- Running 'Scriptfilename.sql' @databasename -----
----------Done---------
But the table is not created on the Oracle database databasename.
I am using the Oracle Developers Tools for Visual Studio version 12.1.0.2.0 from Oracle.
Any ideas anyone????