Oracle常用sql語句

2021-08-02 20:37:29 字數 1985 閱讀 2618

--建立表空間

create tablespace wt

datafile 'h:\wt.dbf'

size 1024m autoextend on next 200m maxsize unlimited;

--建立臨時表空間

create temporary tablespace wt_temp

tempfile 'h:\wt_temp.dbf'

size 500m

autoextend on

next 100m maxsize 1024m;

--建立使用者

create user wt identified by a

default tablespace wt

temporary tablespace wt_temp

account unlock;

--修改密碼

alter user wt identified by admin;

--解鎖

alter user wt account unlock;

--賦權

grant resource,connect,dba to wt;

--檢視程序

select username,sid,serial# from v$session;

--殺死程序

alter system kill session'147,1250';

--刪除使用者

drop user wt cascade;

--刪除表空間

alter tablespace wt offline;

drop tablespace wt including contents and datafiles;

--刪除臨時表空間

drop tablespace wt_temp including contents and datafiles;

--匯出使用者資料

exp wt/a@orcl file=h:\data.bmp log=h:\log

--匯入使用者資料

imp wt/a@orcl file=h:\data.dmp log=h:\log full=y ignore=y

--檢視當前程序執行個數

select count(*) from v$process;

--檢視程序上限

select value from v$parameter where name = 'processes';

--修改程序數量

alter system set processes=400 scope=spfile;

--檢視當前會話執行個數

select count(*) from v$session;

--檢視會話上限

select value from v$parameter where name = 'sessions';

--修改會話數量

alter system set sessions=455 scope=spfile;

--遠端登入

sqlplus username/password@遠端ip:埠/例項

--例

sqlplus username/[email protected]:1521/orcl

--telnet

telnet 10.1.123.93 1521

oracle常用sql語句

1.解鎖oracle使用者下某個使用者 以內建的scott使用者為例 sql conn as sysdba sql alter user scott account unlock identified by tiger 解釋 首先要切換到sysdba使用者下,否則會提示 許可權不足 error at...

oracle常用SQL語句

最近專案中用到,現記錄一下 新增主鍵 alter table shop spec detail add constraint spec detail id primary key id 新增索引 create index spec detail id on shop spec detail id 給...

Oracle常用SQL語句

今天接到乙個新任務 任務的主要內容簡單點說就是乙個下拉框,乙個查詢條件,乙個 table 顯示。當聽完的時候感覺真的是很簡單,這樣的事情也並非沒有做過。但是當靜下心來仔細分析需求,則會發現其與眾不同之處。1 下拉框中顯示的是我們整個模組的表名稱 2 查詢條件初步設想是根據時間查詢 3 table 第...