創(chuàng)建索引:
創(chuàng)新互聯(lián)公司堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的富裕網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
自動
– 創(chuàng)建 PRIMARY KEY
– 創(chuàng)建 UNIQUE KEY
手動
– CREATE INDEX 語句
– CREATE TABLE 語句
create table 語句中 create index
create table new_emp (employee_id number(6) primary key using index
(create index emp_id_idx on
new_emp(employee_id)),
first_name varchar2(20),
last_name varchar2(25));
select index_name, table_name from user_indexes where table_name = 'new_emp';
基于函數(shù)的索引
基于函數(shù)的索引就是一個基于表達(dá)式的索引
索引表達(dá)式由列、常量、SQL 函數(shù)和用戶自定義函數(shù)構(gòu)成的
create index upper_dept_name_idx on dept2(upper(department_name));
select * from dept2 where upper(department_name) = 'SALES';
刪除索引
使用 DROP INDEX 命令從數(shù)據(jù)字典中刪除索引:
drop index index;
從數(shù)據(jù)字典中刪除 UPPER_DEPT_NAME_IDX 索引:
drop index upper_dept_name_idx;
刪除索引,您必須是索引的擁有者或者有 DROP ANY INDEX權(quán)限
drop table dept80 purge;
FLASHBACK TABLE 語句
一條語句就可以恢復(fù)到指定時間點。
恢復(fù)表中的數(shù)據(jù)以及相關(guān)的索引和約束。
可以根據(jù)某一時間點或者系統(tǒng)改變號(SCN) 來恢復(fù)表。
表意外修改的修復(fù)工具:
– 表恢復(fù)到一個較早的時間點
– 優(yōu)點:易用性、可用性、快速執(zhí)行
– 執(zhí)行到位(Is performed in place)
語法:
flashback table[schema.]table[,
[ schema.]table ]...
to { timestamp | scn } expr
[ { enable | disable } triggers ];
示例:
drop table emp2;
select original_name, operation, droptime from recyclebin;
flashback table emp2 to before drop;
臨時表
創(chuàng)建臨時表
create global temporary table cart on commit delete rows;
create global temporary table today_sales
on commit preserve rows as
select * from orders
where order_date = sysdate;
外部表
為外部表創(chuàng)建目錄
創(chuàng)建 DIRECTORY對象,對應(yīng)外部數(shù)據(jù)源所在的文件系統(tǒng)上的目錄。
create or replace directory emp_diras '/.../emp_dir';
grant read on directory emp_dir to ora_21;
創(chuàng)建外部表
create table
(
organization external
(type
default directory
access parameters
(...) )
location ('
reject limit [0 |
使用ORACLE_LOADER 驅(qū)動創(chuàng)建外部表
create table oldemp (
fname char(25), lname char(25))
organization external
(type oracle_loader
default directory emp_dir
access parameters
(records delimited by newline
nobadfile
nologfile
fields terminated by ','
(fname position ( 1:20) char,
lname position (22:41) char))
location ('emp.dat'))
parallel 5
reject limit 200;
查詢外部表
select * from oldemp
使用ORACLE_DATAPUMP驅(qū)動創(chuàng)建外部表:
create table emp_ext
(employee_id, first_name, last_name)
organization external
(
type oracle_datapump
default directory emp_dir
location
('emp1.exp','emp2.exp')
)
parallel
as
select employee_id, first_name, last_name
from employees;