oracle 11g 基本操作

2021-08-28 05:30:17 字數 1156 閱讀 8439

以下均為在***命令下執行

1、登入: win + r 開啟 cmd 命令介面。

2、先用dba登陸:sqlplus / as sysdba;

3、再連線庫:conn 使用者/密碼@sid;

例如:conn system/exer@exer;

4、修改密碼:alter user 使用者 identified by 密碼;

列如:alter user system identified by exer;

5、解鎖使用者:alter user 使用者 account unlock;

列如:alter user system account unlock;

6、查詢使用者角色:select * from dba_role_privs where grantee = '使用者';

列如:select * from dba_role_privs where grantee = 'scott';

或者:show user;

select * from user_role_privs;

7、查詢角色的許可權:select * from role_sys_privs;

8、賦予許可權:grant create table to scott; //建立表許可權

grant create procedure to scott;

grant create session to scott; //建立會話許可權

grant dba to scott; //授予最高許可權

刪除dba許可權: revoke dba from scott;

9、匯出

一:將伺服器上的oracle資料庫匯入到本地機子上;

具體方法:

在cmd模式下執行以下命令

1\匯出:

exp 使用者名稱/密碼@伺服器端資料庫id owner=使用者名稱 file=c:/檔名.dmp

例如:exp system/[email protected]:1521/test owner=system file=e:/test.dmp

10、檢查了使用system表空間的使用者

select distinct owner from dba_segments where tablespace_name='system';

如有差錯,後續修改

php 與 oracle11g 基本操作

資料表,sequence,觸發器建立 conn oci connect scott tiger 192.168.1.244 1521 orcl 建立連線 if conn 查詢資料 query select from example order by id desc rs oci parse conn...

解除安裝oracle 11g

估計和以前的版本一樣,先刪除物理檔案,然後再刪除登錄檔的檔案。大致方法如下 1 刪除物理檔案 1 oracle安裝檔案。2 系統目錄下,program files檔案下的oracle檔案 2 登錄檔中大概有這麼幾個地方 hkey local machine software 刪除oracle目錄 h...

oracle 11G 解除安裝

oracle deinstall deconfig tool start check operation start 安裝檢查配置開始 選擇進行解除安裝的 oracle 主目錄型別為 sidb 檢查主產品清單位置是否存在 c program files oracle inventory 安裝檢查配置...