以管理員身份登錄:
1.首先,創(chuàng)建(新)用戶:
create user username identified by password;
username:新用戶名的用戶名
password: 新用戶的密碼
也可以不創(chuàng)建新用戶,而仍然用以前的用戶,如:繼續(xù)利用scott用戶-
2.創(chuàng)建表空間:
create tablespace tablespacename datafile 'd:\data.dbf' size xxxm;
tablespacename:表空間的名字
d:\data.dbf':表空間的存儲(chǔ)位置
xxx表空間的大小,m單位為兆(M)
3.將空間分配給用戶:
alert user username default tablespace tablespacename;
將名字為tablespacename的表空間分配給username
4.給用戶授權(quán):
grant create session,create table,unlimited tablespace to username;
5.然后再以樓主自己創(chuàng)建的用戶登錄,登錄之后創(chuàng)建表即可。
conn username/password;
創(chuàng)建表用create table.
本文出自:億恩科技【mszdt.com】
服務(wù)器租用/服務(wù)器托管中國(guó)五強(qiáng)!虛擬主機(jī)域名注冊(cè)頂級(jí)提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]
|