欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

怎么才能限制SQL Server只能讓指定的機(jī)器連接

 更新時間: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沒有這樣的功能,也沒有提供在連接時執(zhí)行某一特定過程的功能。這里介紹幾種實現(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中有一個這樣的例, 可以從微軟站點免費下載。

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.

    寫一個存儲過程檢查sysprocesses中的相應(yīng)列(net_address)
<

相關(guān)文章

  • Oracle中死事務(wù)的檢查語句

    Oracle中死事務(wù)的檢查語句

    本節(jié)主要介紹了Oracle中死事務(wù)的檢查語句,需要的朋友可以參考下
    2014-07-07
  • 一個oracle指令的好網(wǎng)站

    一個oracle指令的好網(wǎng)站

    一個oracle指令的好網(wǎng)站...
    2007-03-03
  • Oracle的約束介紹與約束維護(hù)

    Oracle的約束介紹與約束維護(hù)

    這篇文章介紹了Oracle的約束與約束維護(hù),文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2022-05-05
  • [Oracle] CPU/PSU補丁安裝詳細(xì)教程

    [Oracle] CPU/PSU補丁安裝詳細(xì)教程

    Oracle CPU的全稱是Critical Patch Update, Oracle對于其產(chǎn)品每個季度發(fā)行一次安全補丁包,通常是為了修復(fù)產(chǎn)品中的安全隱患,以下是對CPU/PSU補丁安裝的具體操作步驟進(jìn)行了詳細(xì)的分析介紹,需要的朋友可以參考
    2013-07-07
  • oracle 視圖權(quán)限 oracle 創(chuàng)建視圖權(quán)限不足

    oracle 視圖權(quán)限 oracle 創(chuàng)建視圖權(quán)限不足

    在scott用戶下創(chuàng)建視圖的時候,報錯:權(quán)限不足,遇到這個問題,我也是束手無策,于是網(wǎng)上搜集整理了一下,曬出來和大家分享,希望可以幫助你們
    2012-11-11
  • Oracle數(shù)據(jù)庫的備份與恢復(fù)

    Oracle數(shù)據(jù)庫的備份與恢復(fù)

    Oracle數(shù)據(jù)庫的備份與恢復(fù)...
    2007-03-03
  • Oracle中sequence(序列)使用方法詳解

    Oracle中sequence(序列)使用方法詳解

    在oracle中sequence就是序號,每次取的時候它會自動增加,下面這篇文章主要給大家介紹了關(guān)于Oracle中sequence(序列)使用方法的相關(guān)資料,文中通過實例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2023-03-03
  • Oracle批量查詢、刪除、更新使用BULK COLLECT提高效率

    Oracle批量查詢、刪除、更新使用BULK COLLECT提高效率

    BULK COLLECT(成批聚合類型)和數(shù)組集合type類型is table of 表%rowtype index by binary_integer用法筆記。對oracle批量查詢 刪除 更新使用bulk collect提高效果的相關(guān)知識感興趣的朋友通過本文一起學(xué)習(xí)吧
    2017-04-04
  • Linux中Oracle啟動偵聽報錯TNS:permission denied的解決方法

    Linux中Oracle啟動偵聽報錯TNS:permission denied的解決方法

    這篇文章主要介紹了Linux中Oracle啟動偵聽時報錯TNS:permission denied的解決方法,文中給出了詳細(xì)的解決方法,相信對大家具有一定的參考價值,需要的朋友們下面來一起看看吧。
    2017-02-02
  • Oracle開發(fā)之窗口函數(shù)

    Oracle開發(fā)之窗口函數(shù)

    本文主要介紹Oracle窗口函數(shù)的用法,講解全統(tǒng)計、滾動統(tǒng)計(累積/均值)、根據(jù)時間范圍統(tǒng)計、first_value/last_value、比較相鄰記錄具體的使用方法,需要的朋友可以參考下。
    2016-05-05

最新評論