您好,登錄后才能下訂單哦!
查詢數據庫語言及字符集
select userenv('language') from dual;
select * from nls_database_parameters #服務器
select * from nls_instance_parameters #客戶端
select * from nls_session_parameters #會話
查看dump文件導出信息
strings bak20190315.dmp |head -10
strings bak20190315.dmp | grep "CREATE TABLE" | awk '{print $3}'| sed 's/"//g' #表
cat exp.dmp |od -x|head -1|awk '{print $2 $3}'|cut -c 3-6 #查看字符集代碼
select nls_charset_name(to_number('0354','xxxx')) from dual; #代碼轉換成名稱
create user note identified by luoluo; #建用戶授權
grant connect,resource to note;
select name from v$datafile; #查詢數據文件路徑
create tablespace note datafile='/u01/app/oracle/oradata/orcl/note01.dbf' size 31G; #新建表空間
alter tablespace note add datafile='/u01/app/oracle/oradata/orcl/note02.dbf' size 31G;
alter tablespace note add datafile='/u01/app/oracle/oradata/orcl/note03.dbf' size 31G;
alter tablespace note add datafile='/u01/app/oracle/oradata/orcl/note04.dbf' size 31G;
alter user note default tabspace note; #修改用戶默認表空間
imp system/ORACLE12C file=/mnt/data/bak20190315.dmp FROMUSER=NOTE
參考鏈接
https://www.cnblogs.com/lipera/p/6201434.html
https://www.cnblogs.com/lhrbest/p/6832707.html
https://www.cnblogs.com/rootq/articles/2049324.html
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。