按照正常步驟 安裝oracle
然後
建立pitaya和boss和pty表空間
create user lsc identified by lsc123456; 建立使用者
create user pitaya identified by 123456; 建立使用者
create user boss identified by 123456; 建立使用者
使用者授權:
grant connect,resource,dba to pitaya;
grant connect,resource,dba to boss;
授予建立檢視得許可權:
grant select any dictionary to pitaya;
grant create view to pitaya;
grant select any table to pitaya;
create tablespace pty
logging
size 2000m
autoextend on
next 200m maxsize 20480m
extent management local;
然後匯入資料:
imp pitaya/[email protected]:1521/orcl file=d:\pitaya.dmp full=y ignore=y;
imp boss/[email protected]:1521/orcl file=d:\boss.dmp full=y ignore=y;
從自己的oracle庫匯出資料:
exp boss/123456 file=***
exp pitay_fj/123456@orcl file=c:\users\administrator\desktop\1\pitaya0702.dmp full=y;
exp boss_fj/123456@orcl file=c:\users\administrator\desktop\1\boss0702.dmp full=y;
grant select,insert,update ,delete on afa_user to devpitaya
grant connect,resource,dba to devpitaya;
grant all privileges to devpitaya;
grant all privileges to boss_bz
Python Signal 訊號 (二十一)
常用訊號型別sigint 終止程序 中斷程序,不可通過signal.signal 捕捉 相當於ctrl c sigterm 終止程序 軟體終止訊號,可通過signal.signal 捕捉 預設訊號,當os.kill 沒有指明訊號型別時,預設的是該訊號 sigkill 終止程序 殺死程序,不可捕捉 相...
C primer 二十一 模板
模板定義以關鍵字template開始,後跟乙個模板引數列表 template parameter list 這是乙個逗號分隔的乙個或多個模板引數 template parameter 的列表,用小於號 包圍起來。模板引數列表的作用很像函式引數列表。函式引數列表定義了若干特定型別的區域性變數,但並末指...
命令二十一 tar
隨著壓縮技術的發展,linux環境下提供的壓縮指令和格式開始變多。為了便於使用者區分不同壓縮檔案使用的不同壓縮技術,進而使用合適的指令進行操作,一般使用字尾標識檔案在壓縮或打包過程中所使用的壓縮技術。常見的字尾有以下幾種 z compress程式壓縮產生的檔案 現在很少使用 gz gzip程式壓縮產...