【正文】
的創(chuàng)建用戶的語法SQLCREATE USER sidney IDENTIFIED BY out_standing1 DEFAULT TABLESPACE example QUOTA 10M ON example TEMPORARY TABLESPACE temp QUOTA 5M ON system PROFILE app_user PASSWORD EXPIRE。32 create a procedure創(chuàng)建存儲(chǔ)過程,執(zhí)行的方法SQLcreate or replace procedure get_news as aa number?! egin select count(*) into aa from cf_news?! ?39。aa=39。||aa)?! nd。excute the procedureSQL execute get_news。 aa=333 A simple sample on create index創(chuàng)建視圖的語法SQL create or replace view testview3 as select * from test3。34 a view by using aggregate function創(chuàng)建個(gè)帶有聚集函數(shù)的視圖SQL create view testview4 as select id,sum(id) test3_id from test3 group by id。35 Exp 和Imp的幫助的查看方法: Dos命令下:Exp help=yImp help=y36 刪除用戶下對象的方法最方便的方法就是 drop user aaa cascade。然后重建用戶。 如果你不想刪除后重建用戶,那就: select 39。drop 39。 || object_type || 39。 39。 || object_name || 39。39。 from user_objects。 然后執(zhí)行得出的結(jié)果即可。