配置PLSQL問題處理

2021-09-19 07:09:18 字數 321 閱讀 8138

ora-12638: 身份證明檢索失敗的解決方法

本地oracle客戶端用plsql developer連線遠端資料庫,每次登入都會在很久之後,出現 ora-12638: 身份證明檢索失敗,tnsping 表明tns配置沒有問題。

解決方案:在network\admin檔案下找到sqlnet.ora檔案,如果存在sqlnet.authentication_services= (nts)設定,則修改為:sqlnet.authentication_services= (none),如果不存在,則直接新增sqlnet.authentication_services= (none),我的問題得以解決。

pl sql異常處理

丟擲異常 oracle有三種型別的異常錯誤 1 預定義 predefined 異常 oracle預定義的異常情況大約有24個。對這種異常情況的處理,無需在程式中定義,由oracle自動將其引發。2 非預定義 predefined 異常 即其他標準的oracle錯誤。對這種異常情況的處理,需要使用者在...

例外處理 PL SQL

預定義例外 處理常見的oracle錯誤 no data found 編寫乙個塊,輸入雇員的編號,並顯示改雇員的姓名 如果雇員的編號不存在,怎樣去處理?declare v name varchar2 50 begin select ename into v name from emp where em...

PLSQL 異常處理

1.異常塊begin pl sql塊 exception when no data found then 沒有找到資料 響應命令 when too many rows then 返回多行,隱式游標每次只能檢索一行資料 響應命令 when invalid number then 字元向數字轉換失敗 響...