Oracle使用者建立 資料庫備份

2021-07-09 08:29:43 字數 471 閱讀 2129

1.使用者建立

create user username identified by pwd;

授予許可權(grant create table to username後在該使用者下也不能建表,沒有相應表空間)

grant connect,resource to username;

建表create table tab()

2.資料庫備份

資料匯出:

cd e:\oracle\product\10.2.0\db_1\bin;

exp username1/password@資料庫 file=daochu.dmp owner=username1;

資料匯入:(由具有dba許可權的使用者匯出的dmp,在匯入到另乙個庫的時候,該庫也必須具有dba許可權 grant dba to username)

imp username2/password@資料庫 file=daochu.dmp full=y;

oracle資料庫建立 備份

建立資料庫,常用 database configuration assistant 資料庫配置助手 按照提示操作即可 相關術語 資料庫 包括了資料檔案dbf,控制檔案clt和日誌log。其實體儲存在安裝目錄的oradata資料夾,針對每個資料庫有單獨的目錄來儲存。資料庫例項 使用者通過啟動資料庫例項...

Oracle建立使用者以及備份還原資料庫操作

create the user create user xx identified by default tablespace users temporary tablespace temp profile default password expire grant revoke role priv...

Oracle建立使用者以及備份還原資料庫操作

create the user create user xx identified by default tablespace users temporary tablespace temp profile default password expire grant revoke role priv...