oracle的幾個常用操作

2021-09-02 09:33:17 字數 1243 閱讀 7956

解除安裝oracle

執行regedit,刪除hkey_local_machine\software\oracle

hkey_local_machine\system\currentcontrolset\services,滾動 這個列表,刪除所有oracle入口。

資料恢復到某個時間點

alter table t_d_info_ggzxctcw enable row movement;

flashback table t_d_info_ggzxctcw to timestamp to_timestamp('2014-07-15

14:00:00','yyyy-mm-dd hh24:mi:ss')

建立表空間

create tablespace zjjt_zd

logging

datafile 'g:\oradata\chenjy.dbf'

size 50m

autoextend on

next 50m maxsize 20480m

extent management local;

匯入表資料

imp zjjt_zd2/[email protected]/orcl file=c:\users\administrator.win-brm7252ic9e\desktop\zd_20150103_222032.dmp full=y ignore=y;

匯出表資料

exp zjjt_zd/[email protected]:1521/alyora file=d:\exp.dmp full=y

查詢使用者下的所有表

sys登陸:

select * from dba_tables where owner= 'sjjh'

使用者登陸:

select * from user_tables

使用者表的表名和行數

select table_name,num_rows from user_tables;

刪除使用者下的所有表

declare

cursor cur1 is select table_name from dba_tables where owner='zjjt_zd2';

begin

for cur2 in cur1 loop

execute immediate 'drop table zjjt_zd2.'||cur2.table_name;

end loop;

end;

Oracle 幾個常用函式

1.判斷字段內容長度 length 欄位名 10 2.沒有值用 替代 nvl 欄位名,3.上面兩個結合 length nvl 欄位名,10 4.case when 用法 case when length nvl 欄位名,10 then 欄位名 else null end 別名 說明 當字段長度為10...

Redis的幾個常用操作

redis通常被稱為資料結構伺服器 特點 支援資料的持久化,可以將記憶體中的資料儲存在磁碟中,重啟的時候可以再次載入進行使用 使用connection pool來管理對乙個redis server的所有連線,避免每次建立 釋放連線的開銷。預設,每個redis例項都會維護乙個自己的連線池。可以直接建立...

git 的幾個常用操作

git 在我們平常工作中非常重要,只要接觸到 開發,就一定會用到該操作。我把這個稱為 拉 推操作 1 拉 如果你進入乙個新的公司,你需要先從git庫裡面 拉 你需要先開啟git的終端,然後cd到你需要把 存放的位址,然後輸入 git clone git本身的源 http協議2 推 執行完 的完善工作...