I am running a script in sql*plus, it's located in the Desktop and my command is:
@C:\users\intel\desktop\script1.sql
When I press enter key, the pointer just go to the next line and blink there and then nothing is done. Even I can't write anything. What's the problem??
This is the part of my script:
CREATE TABLE ADDRESS
(
ADDRESSID INTEGER PRIMARY KEY,
FLAG CHAR(1),
ID INTEGER NOT NULL,
ADDRESS VARCHAR(100)
);
CREATE TABLE Category (
CategoryId INTEGER NOT NULL ,
CategoryName VARCHAR(100) NULL,
PRIMARY KEY(CategoryId)
);
set echo onat the start of the script to have a better idea of what's going on. – Mat Nov 25 '12 at 10:11