怎么才能限制SQL Server只能讓指定的機(jī)器連接
更新時(shí)間:2007年03月06日 00:00:00 作者:
正在看的ORACLE教程是:怎么才能限制SQL Server只能讓指定的機(jī)器連接。 Q. How can I restrict access to my SQL Server so that it only allows certain machines to connect?
(v1.0 19.10.1998)
怎樣才能限制我的SQL Server只能讓指定的機(jī)器連接
A. SQL Server has no built-in tools/facilities to do this. It also does not have the facility to run a stored-procedure on connection that could be written/used to do this. Therefore you have the following choices :-
SQL Server沒有這樣的功能,也沒有提供在連接時(shí)執(zhí)行某一特定過程的功能。這里介紹幾種實(shí)現(xiàn)的方法
1. Put the SQL Server behind a firewall and use that to restrict access. This is the most secure and functional way to do what you want.
使用防火墻,它提供了安全和你想用的工具。
2. Write your own ODS Gateway and point the clients at that instead of the SQL Server - the ODS Gateway will then do the checking. However, there is nothing stopping clients figuring out the correct SQL client-config entries to point straight at the SQL Server. There are examples of ODS code in the SQL Programmers Toolkit - available for free download from the MS website.
寫自己的ODS網(wǎng)關(guān)代替SQL Server的客戶端 - 在ODS網(wǎng)關(guān)中檢查。不過,這并不能停止正常的客戶端連接SQL Server。在SQL Programmers Toolkit中有一個(gè)這樣的例, 可以從微軟站點(diǎn)免費(fèi)下載。
3. Write a constantly running/scheduled stored-procedure that checks the relevant column in sysprocesses (net_address), and then issues a KILL command for any processes that should not be running. Note that this only works for MAC addresses. This way allows people to connect and possibly make changes before they are spotted and killed.
寫一個(gè)存儲(chǔ)過程檢查sysprocesses中的相應(yīng)列(net_address)
<
(v1.0 19.10.1998)
怎樣才能限制我的SQL Server只能讓指定的機(jī)器連接
A. SQL Server has no built-in tools/facilities to do this. It also does not have the facility to run a stored-procedure on connection that could be written/used to do this. Therefore you have the following choices :-
SQL Server沒有這樣的功能,也沒有提供在連接時(shí)執(zhí)行某一特定過程的功能。這里介紹幾種實(shí)現(xiàn)的方法
1. Put the SQL Server behind a firewall and use that to restrict access. This is the most secure and functional way to do what you want.
使用防火墻,它提供了安全和你想用的工具。
2. Write your own ODS Gateway and point the clients at that instead of the SQL Server - the ODS Gateway will then do the checking. However, there is nothing stopping clients figuring out the correct SQL client-config entries to point straight at the SQL Server. There are examples of ODS code in the SQL Programmers Toolkit - available for free download from the MS website.
寫自己的ODS網(wǎng)關(guān)代替SQL Server的客戶端 - 在ODS網(wǎng)關(guān)中檢查。不過,這并不能停止正常的客戶端連接SQL Server。在SQL Programmers Toolkit中有一個(gè)這樣的例, 可以從微軟站點(diǎn)免費(fèi)下載。
3. Write a constantly running/scheduled stored-procedure that checks the relevant column in sysprocesses (net_address), and then issues a KILL command for any processes that should not be running. Note that this only works for MAC addresses. This way allows people to connect and possibly make changes before they are spotted and killed.
寫一個(gè)存儲(chǔ)過程檢查sysprocesses中的相應(yīng)列(net_address)
<
相關(guān)文章
oracle數(shù)據(jù)庫表實(shí)現(xiàn)自增主鍵的方法實(shí)例
Oracle數(shù)據(jù)庫中沒有自增字段,我們可以通過創(chuàng)建序列和觸發(fā)器的方式,間接地實(shí)現(xiàn)自增的效果,下面這篇文章主要給大家介紹了關(guān)于oracle數(shù)據(jù)庫表實(shí)現(xiàn)自增主鍵的相關(guān)資料,需要的朋友可以參考下2022-06-06
Oracle通過正則表達(dá)式分割字符串 REGEXP_SUBSTR的代碼詳解
這篇文章主要介紹了Oracle通過正則表達(dá)式分割字符串 REGEXP_SUBSTR的相關(guān)知識(shí),非常不錯(cuò),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-05-05
VMware中l(wèi)inux環(huán)境下oracle安裝圖文教程(一)
剛剛接觸ORACLE的人來說,從那里學(xué),如何學(xué),有那些工具可以使用,應(yīng)該執(zhí)行什么操作,一定回感到無助。所以在學(xué)習(xí)使用ORACLE之前,首先來安裝一下ORACLE 10g,在來掌握其基本工具。俗話說的好:工欲善其事,必先利其器。作為一個(gè)新手,我們還是先在VMware虛擬機(jī)里安裝吧。2014-08-08
ORACLE數(shù)據(jù)庫對(duì)long類型字段進(jìn)行模糊匹配的解決思路
這篇文章主要介紹了ORACLE數(shù)據(jù)庫對(duì)long類型字段進(jìn)行模糊匹配的解決思路,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-04-04
ORACLE 數(shù)據(jù)庫RMAN備份恢復(fù)
還原不同位置的數(shù)據(jù)庫2009-04-04
基于oracle小數(shù)點(diǎn)前零丟失的問題分析
本篇文章是對(duì)oracle小數(shù)點(diǎn)前零丟失的問題進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下2013-05-05
Oracle如何實(shí)現(xiàn)把B表某一字段更新到A表
這篇文章主要給大家介紹了關(guān)于Oracle如何實(shí)現(xiàn)把B表某一字段更新到A表的相關(guān)資料,在Oracle中使用一個(gè)表的字段來更新另一個(gè)表的字段,可以采用UPDATE SELECT語句,文中給出了詳細(xì)的代碼示例,需要的朋友可以參考下2023-07-07

