Oracle 數(shù)據(jù)庫(kù)常用操作語(yǔ)句大全
發(fā)布者:網(wǎng)上發(fā)布
?下面小編給大家整理了Oracle 數(shù)據(jù)庫(kù)常用操作語(yǔ)句大全,希望對(duì)大家的學(xué)習(xí)有所幫助。
?一、Oracle數(shù)據(jù)庫(kù)操作
??1、創(chuàng)建數(shù)據(jù)庫(kù)??create database databasename
??2、刪除數(shù)據(jù)庫(kù)
??drop database dbname
??3、備份數(shù)據(jù)庫(kù)
??完全備份
??exp demo/demo@orcl buffer=1024 file=d:\back.dmp full=y
??demo:用戶名、密碼
??buffer: 緩存大小
??file: 具體的備份文件地址
??full: 是否導(dǎo)出全部文件
??ignore: 忽略錯(cuò)誤,如果表已經(jīng)存在,則也是覆蓋
??將數(shù)據(jù)庫(kù)中system用戶與sys用戶的表導(dǎo)出
??exp demo/demo@orcl file=d:\backup\1.dmp owner=(system,sys)
??導(dǎo)出指定的表
??exp demo/demo@orcl file=d:\backup2.dmp tables=(teachers,students)
??按過(guò)濾條件,導(dǎo)出
??exp demo/demo@orcl file=d:\back.dmp tables=(table1) query=" where filed1 like 'fg%'"
??導(dǎo)出時(shí)可以進(jìn)行壓縮;命令后面 加上 compress=y ;如果需要日志,后面:log=d:\log.txt
??備份遠(yuǎn)程服務(wù)器的數(shù)據(jù)庫(kù)
??exp 用戶名/密碼@遠(yuǎn)程的IP:端口/實(shí)例 file=存放的位置:\文件名稱.dmp full=y
??4、數(shù)據(jù)庫(kù)還原
??打開(kāi)cmd直接執(zhí)行如下命令,不用再登陸sqlplus。