随笔 - 441
文章 - 4
评论 - 84
阅读 -
109万
01 2008 档案
oracle 批量重建索引
摘要:create or replace procedure p_rebuild_all_index (tablespace_name in varchar2) as sqlt varchar(200); begin for idx in (select index_name, tablespace_name, status from user_indexes where tabl...
阅读全文
sqlldr自定义函数调用
摘要:知识点 1.自动产生id 2.定长数据处理 3.自定义函数使用. unrecoverable LOAD DATA INFILE 'tmp.txt' BADFILE 'tmp.bad' TRUNCATE INTO TABLE sss ( ID sequence (max,1), 主叫号码 POSITION(01:22) "decode(:主叫号码,'00C','',:主叫号...
阅读全文