常用oracle sql語句

2021-08-22 16:07:01 字數 2308 閱讀 3754

建立表空間

alter tablespace nm offline;

drop tablespace nm including contents and datafiles;

drop user nmcascade;

create tablespace nm

datafile '***1' size 500m autoextend on next 100m maxsize 2000m,

'***2' size 500m autoextend on next 100m maxsize unlimited

logging online permanent

extent management local

segment space management auto ;

create user "nm" identified by "mima" default tablespace "nm" temporary tablespace "temp" profile default account unlock;

grant "connect" to "nm";

grant "resource" to "nm";

grant unlimited tablespace to "nm";

alter user "nm" default role all;

commit;

exp schema/mima@cq_10.40.24.3 file="dddd"log=n owner=(schema)

imp system/[email protected] file=*** tablespaces=test1 fromuser=test1 touser=test1

參考

虛擬光碟機: mount -o loop *.iso /mnt/cdrom

creat iso:dd if=/dev/cdrom of=*.iso

startserver server1

./apachectl start

解壓:tar zxvf x*.tar.gz

打包: tar -cf *.tar *.*

增加檔案: tar -rf *.tar *.*

解包: tar -xf *.tar

打壓縮包:tar -czf *.tar.gz *.*

解 *.gz : gunzip *.gz

檢視語言包 /etc/sysconfig/i18n

執行 system-config-language

rpm -ivh ttfonts_zh_cn

自啟動: /etc/rc.d/rc.local

檢視目錄大小: du -sh diname

硬碟大小: df -h

df-k

永久修改ip

ifconfig eth0 ip

/etc/sysconfig/network-scripts/ifcfg-eth0

重新啟動網路: /etc/init.d/network restart

檢視22埠執行的程式: lsof -i :22

dns: /etc/reslov.conf

檢視埠情況: netstat -rn

停止防火牆: /sbin/service iptables stop

確系統啟動時執行 /sbin/chkconfig --level 345 iptables on

host檔案位置 /etc/host.conf

jdbc url: jdbc:oracle:thin:@ip:port:sid

jndi 是什麼?

資料庫使用者名稱密碼是什麼?

Oracle SQL語句優化

1,建表時 1 建立主鍵 2 建立索引 3 如果表資料量很大考慮建立分割槽 4 可以使用number型別的就不適用varchar2,這是因為引擎在處理查詢和連線時會逐個比較字串中每乙個字元,而對於數字型而言只需要比較一次就夠了。2,建立索引注意事項 1 首先應考慮在 where 及 order by...

oracle sql 複雜語句

1.oracle行轉列,pivot函式和unpivot函式 2.start with connect by prior 遞迴查詢用法 樹形結構的資料 例如組織機構樹 3.資料誤刪恢復 select from 表名稱 as of timestamp to timestamp 2020 05 07 08...

oracle sql 語句 記錄備忘

1.複製表結構及其資料 create table table name new as select from table name old 2.只複製表結構 create table table name new as select from table name old where 1 2 3.只...