oracle移庫筆記
阿新 • • 發佈:2017-06-11
版本 登錄 分享 -1 windows 當前 esp machine ftw
1. windows 找oracle安裝目錄: HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDb11g_home1
2. 查看當前用戶權限
select * from session_privs;
3. 查看當前用戶的缺省表空間
select username,default_tablespace from user_users;
4. 查看當前用戶的角色
select * from user_role_privs;
5. 創建用戶
create user 用戶名 identified by "密碼";
6. 授權,授予dba權限給用戶
grant dba to 用戶名;//授予sun用戶myrole的角色
7. 轉換登錄用戶
connect 用戶名/密碼;
8. 查看表空間大小
SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size FROM dba_tablespaces t, dba_data_files d WHERE t.tablespace_name = d.tablespace_name GROUP BY t.tablespace_name;
9. 導入遇到的錯誤,版本不對,解決方案,自己百度搜
10. 導出緩沖區不夠
解決方案:加大還緩沖區
11.
oracle移庫筆記