程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> 修復 status 為 unusable 的 index,statusunusable

修復 status 為 unusable 的 index,statusunusable

編輯:Oracle教程

修復 status 為 unusable 的 index,statusunusable


以DBA權限登陸,執行以下腳本即可。

declare  
  -- 指向所有 UNUSABLE 狀態的 index 的游標   
  cursor c is   
    select index_name, owner   
    from dba_indexes   
    where status='UNUSABLE';  
    
  owner dba_indexes.owner%type;  
  index_name dba_indexes.index_name%type;  
begin  
  open c;  
  loop   
       fetch c into index_name, owner;   
       exit when c%notfound;  
         
       execute immediate 'alter index ' || owner || '.' || index_name || ' rebuild';  
  end loop;  
  close c;  
end; 


<td class="td_title"> <html:select property='insurantList[${statusindex}]identityType' value="${

function checkIdentityCard(obj) {
if (obj.value.length !== 18) {
alert('不是18位');
}
}
 

HTTP Status 500 - javalangIndexOutOfBoundsException: Index: 0, Size: 0

很明顯,你使用的數組出現問題了。可能你的List不為空,但是list.size()==0,你想取第一個值,根本沒有,所以出錯了。在用list.get(0);的時候,你需要判斷list != null && list.size()!=0
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved