ORACLE920與ASP的串連問題的解決辦法

來源:互聯網
上載者:User
oracle|解決|問題 ORACLE920與ASP的串連問題的解決辦法







代碼如下:



<%



on error resume next



'串連資料庫







Set OraSession = CreateObject("OracleInProcServer.XOraSession")



set oradatabase=orasession.dbopendatabase("資料庫名","使用者名稱/密碼",0)







'出錯處理



if err.number >0 then



Response.Write "<h4>asp 錯誤控制</h4>"



Response.Write "asp 錯誤來源:"&err.Source &"<br>"



Response.Write "asp 錯誤碼:"&err.number &"<br>"



Response.Write "asp 錯誤說明:"&err.Description &"<br>"



err.Clear



Response.Write "<h4>ORACLE OLE 錯誤控制</h4>"



Response.Write "ORACLE 錯誤碼"&OraSession.lastServerErr&"<br>"



Response.Write "ORACLE 錯誤說明"&OraSession.lastServerErrtext&"<br>"



closeDatabase



displayerror



Response.end



end if







'關閉資料庫



sub closeDatabase()



oradatabase.close



'set oradatabase=nothing



orasession.close



set orasession=nothing



end sub







function displayerror()



if err.number <>0 then



Response.Write "<br><br><br><p align=center fontsize=20>資料庫連接失敗,請與系統管理員聯絡!</p>"



Response.End



end if



end function







%>







解決辦法:







1、IIS要訪問ORACLE資料庫時,在OLEDB中賦於一個許可權(是ORACLE的BUG)



在ORACLE_HOME目錄下ORA92目錄的屬性裡的安全性上添加/編輯“Authenticated Users”使用者,在其“讀取及運行”許可權上先點不選,再點選擇,然後“應用”。







2、在ORACLE_HOME目錄下ORA92\network\ADMIN目錄裡有一個“sqlnet.ora”檔案,



內容如下:







# SQLNET.ORA Network Configuration File: E:\oracle\ora92\network\admin\sqlnet.ora



# Generated by Oracle configuration tools.







NAMES.DEFAULT_DOMAIN = jgc-new.local







SQLNET.AUTHENTICATION_SERVICES= (NTS)







NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)







將其改為:



# SQLNET.ORA Network Configuration File: E:\oracle\ora92\network\admin\sqlnet.ora



# Generated by Oracle configuration tools.







NAMES.DEFAULT_DOMAIN = jgc-new.local







# SQLNET.AUTHENTICATION_SERVICES= (NTS)







NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.