樓主只要新建一個表空間,並把它分配給一個用戶就能夠了。 肯定樓主是以管理員身份登陸的: 1.首先,建立(新)用戶: create user username identified by password; username:新用戶名的用戶名 password: 新用戶的密碼 也能夠不建立新用戶,而仍然用之前的用戶,如:繼續利用scott用戶 2.建立表空間: create tablespace tablespacename datafile 'd:\data.dbf' size xxxm; tablespacename:表空間的名字 d:\data.dbf':表空間的存儲位置 xxx表空間的大小,m單位爲兆(M) 3.將空間分配給用戶: alert user username default tablespace tablespacename; 將名字爲tablespacename的表空間分配給username 4.給用戶受權: grant create session,create table,unlimited tablespace to username; 5.而後再以樓主本身建立的用戶登陸,登陸以後建立表便可。 conn username/password;