oracle建立使用者與資料庫
--1、建立表空間,檔案位置請按照安裝目錄去修改
create
tablespace flow_data
datafile
'd:\oradata\orcl\flow_data.dbf
'size 100m autoextend
onnext
100m maxsize unlimited
extent management local segment
space
management auto;
--2、建立使用者
create
user flow profile default identified by
flow
default tablespace flow_data temporary tablespace temp
account unlock
--3、給使用者新增角色和新增許可權
grant dba, resource, connect to
flow ;
grant
create
anytable,create
anyview ,create
anysequence,
select
any dictionary,unlimited tablespace to
flow;
--4、解決以dba能登陸,以普通使用者不能登入
alter
user flow identified by
flow;
alter
user flow account unlock;
建立oracle資料庫使用者
查詢表空間 select tablespace name,file id,file name,round bytes 1024 1024 0 total space from dba data files order by tablespace name 1.建立表空間 create tablesp...
為Oracle資料庫建立使用者
oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫中建表,必須先建立該資料庫的使用者,並且為該使...
為Oracle資料庫建立使用者
oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫中建表,必須先建立該資料庫的使用者,並且為該使...