如果你電腦安裝了oracle資料庫,開啟服務列表oracle服務總共有7個,其中oracleserviceorcl是核心服務,是必須要開啟的服務,還有listener 監聽服務也要開啟,其他服務一般用不到,可根據情況選擇開啟與否
然後通過plsql連線:
---建立使用者
create user glhm3 identified by orcl_1234;
---修改使用者密碼
alter user glhm3 identified by 1234;
--檢視使用者的表空間
select username,default_tablespace from dba_users;
--建立表空間
---刪除表空間:
---可以先將其offline
alter tablespace glhm3 offline;
----將磁碟上的資料檔案一同刪除
drop tablespace glhm3 including contents and datafiles;
---建立好錶空間,還需要將表空間分配給使用者.
alter user glhm3 default tablespace glhm3;
--給使用者分配許可權
grant create session,create table,create view,create sequence,unlimited tablespace to glhm3;
oracle建立表空間,建立使用者
建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend on next 32m maxs...
oracle建立表空間,建立使用者
建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend onnext 32m maxsi...
oracle建立表空間,建立使用者
建立臨時表空間 create temporary tablespace test temp tempfile e oracle product 10.2.0 oradata testserver test temp01.dbf size 32m autoextend on next 32m maxs...