oracle命令記錄本

2021-08-30 20:17:30 字數 1301 閱讀 4411

[b]本機連oracle:[/b]sqlplus 」/as sysdba「

[b]控制台cmd下匯出oralcle資料[/b]

表:exp username/password@sid_ip file= d:\table.dmp tables=(tablename1,tablename2)

資料庫:exp username/password@sid file=d:\example.dmp full=y

將某使用者的表匯出:exp username/password@sid file=d:\example.dmp owner=(system,sys)

匯出表中固定字段資料:exp username/password@test file=d:\example.dmp tables=(table1) query=" where filed1 like '00%'"

[b]控制台cmd下匯入oralcle資料[/b]

imp system/manager@test file=d:\example.dmp

imp aichannel/aichannel@test full=y file=d:\example.dmp ignore=y

imp system/manager@test file=d:\example.dmp tables=(table1)

oracle:ora-28000錯誤解決方法:alter user username account unlock;

快速刪除資料:truncate table name

[b]建立資料庫過程[/b]

1.建立表空間:

create tablespace nsf

datafile 'f:\oracle\oradata\orcl\nsf.dbf'

size 50m

autoextend on

next 50m maxsize 20480m

extent management local;

2.建立按使用者:

create user nsf identified by orcl

default tablespace nsf

temporary tablespace temp;

3.授權:

grant create user,drop user,alter user ,create any view ,select any dictionary,

drop any view,exp_full_database,imp_full_database,

dba,connect,resource,create session to nsf;

演算法導論記錄本

過程描述 待排序序列數分為兩部分,一部分為已排好序序列,一部分未排好,初始時,已排好個數為1。從未排好序序列第乙個數開始迴圈,如果已排好序列中的數大於第乙個數,將該數右移,直到 遇見小於等於第乙個數的數值,那麼在該位置插入為未排序序列中的第乙個數,之後的從第二 個數開始,重複過程,直到遍歷完所有的數...

常見單詞記錄本

access 訪問 adatation 介面卡 adequate 足夠的 alias 別名 alter 更改 alternate 交替 ancestor 祖先 anonymous 匿名的 architecture 架構 argument 引數 ascend 上公升 assignment 賦值 asy...

SC BP基礎記錄本

sc解碼 已知資訊位和資訊 凍結位元分布情況。首先求算接收通道的llr,實質上就是根據0 1的概率比較來判定。對於每一層向左迭代時,有llr的迭代公式。對於凍結位元,直接判定其為約定好的數值 對於資訊位元根據大於0與否,賦值為0 1。ssc 針對於rate 0節點 全零子樹 直接無需遍歷其子樹,也就...