drop tablespace including contents!!!!
Hi,
I created an instance Oracle with more tablespace.
I have a tablespace "art" with four users (CREATE USER john IDENTIFIED BY john DEFAULT TABLESPACE "art" TEMPORARY TABLESPACE TEMP)
owner is user TOM.
Now I must drop the tablespace "art" and import again the dmp.
I tried without drop the users but I get error and when I connect with a user of "art" I get ORA-00942.
DROP TABLESPACE "art" including contents;
CREATE TABLESPACE "art" DATAFILE 'c:\art\art01.dbf' SIZE 300M REUSE DEFAULT STORAGE
(INITIAL 10240 NEXT 10240 MINEXTENTS 1 MAXEXTENTS 256 PCTINCREASE 0) ONLINE;
imp system/manager@mydb frouser=sam touser=TOM file=c:\art.dmp log=c:\art.log
Must I drop also the users (TOM, john......)?????
Thanks
Raf