marzposted @
5 months ago in
sql with tags
oracle
backup , 104 readers
單錶備份(前提庫的結構是一樣的)
匯出:
開始鈕->執行->輸入cmd->進入dos介面
exp 使用者名稱/密碼@連線字串 grants=y tables=(表名) file=c:/檔名.dmp
匯入:
開始鈕->執行->輸入cmd->進入dos介面
imp 使用者名稱/密碼@連線字串 ignore=y tables=(表名) full=n file=c:/檔名.dmp
全庫導
匯出:
開始鈕->執行->輸入cmd->進入dos介面
exp 使用者名稱/密碼@連線字串 full=y file=c:/檔名.dmp
匯入:
開始鈕->執行->輸入cmd->進入dos介面
當sqlplus 中沒看著資料庫時,可以找著oracle的安裝目錄下的/oracle/product/10.2.0/db_1/network/admin 下的 tnsnames.ora 檔案,在其中新增所要連線的資料庫的資訊即可。如:
local_sgai =
(description =
(address = (protocol = tcp)(host = zsc-pc)(port = 1521))
(connect_data =
(server = dedicated)
(service_name = sgai)
)
使用SQLPLUS備份儲存過程
set echo off set newpage none set feedback off set linesize 2500 set heading off set pagesize 0 set termout off set trimout on set trimspool on col pr...
用SQL PLUS建立網頁
在oracle文件中 sql plus user s guide and reference 7 generating html reports from sql plus這章就有介紹 文件中有個例子 set markup指明sql plus輸出html編碼格式,必須使用set markup htm...
用sqlplus建立表相關紀要
開啟sqlplus。登陸的時候輸入帳戶密碼 system p 草好像,需要選擇以什麼角色進入,忘記了。顯示當前資料庫的sid select name from v database 結果是和我在enterprise manager console裡面得到的一樣 zaka.show user 顯示出當...