將無用的索引提取出來:
條件:1. monitoring一段時間,沒有使用過
2. 不屬於pk、unique約束的一部分
3. 和外來鍵無關(這個裡面有漏洞,如果乙個外來鍵次序和多條索引匹配,則乙個都不匹配)
滿足以上3個條件,認為這個索引是無效的,沒有用處的
select *
from v$object_usage
where used = 'no'
and not exists (select 1
from user_constraints
where user_constraints.index_name = v$object_usage.index_name)
and not exists (
select 1
from (select constraint_name, constraint_type,
matchforeignkeyindex (constraint_name) index_name
from user_constraints
where constraint_type = 'r')
where index_name = v$object_usage.index_name)
order by index_name
怎麼把PDF中的文字提取出來
pdf文件大家也都見過,這種格式的文件編輯起來不像word文件那樣方便。在使用裡面的內容的時候也比較繁瑣。若要提取裡面的一些文字內容,一般都會想到複製,但是一次只能複製少量的文字內容,而且複製到word或者txt文件中後排版可能會亂。那有什麼高效的方法呢。首先是我們用來開啟檢視pdf檔案都會用到的a...
python之如將字串中的數字提取出來然後求和
因工作原因,很久沒有學習python知識了,感覺都快忘記了,前天看到乙個練習題,如何將字串中的數字提取出來,然後求和呢?下面我來解釋一下如何通過python 來實現。思考 1 字串中包含了字母和數字和小數點,怎麼取出來比較呢?2 小數點連續有很多個的時候怎麼處理?3 最後取出來的數該怎麼求和?4 最...
把日期字串中的年月日提取出來
include stdafx.h include int monthday 12 bool parse date string const char date string,int year,int month,int day 存放格式為 月日年 len 0 int i 0 int temp 0 臨...