Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> SP2-0332: Cannot create spool file
I am trying to run the following script CreateMovies.sql from
sql plus.
SP2-0332: Cannot create spool file.
DROP USER MOVIES CASCADE
*
I am getting the above error and no clues what it means.
any has clue?
SK.
CREATEMOVIES.SQL*****************
CREATEUSER.SQL********************
SPOOL log/CREATEUSER.LOG;
DROP USER MOVIES CASCADE;
CREATE USER MOVIES IDENTIFIED BY MOVIES
DEFAULT TABLESPACE USERS
TEMPORARY TABLESPACE TEMP
QUOTA UNLIMITED ON USERS
QUOTA UNLIMITED ON TEMP;
GRANT CONNECT,RESOURCE TO MOVIES;
GRANT UNLIMITED TABLESPACE TO MOVIES;
SPOOL OFF;
Received on Sun Oct 30 2005 - 19:42:22 CST
![]() |
![]() |