Ask a Question related to ASP, Design and Development.

  1. #1

    Default seek for help

    Hi All,

    I got a question about connecting the SQL server database with a asp page. I
    just wanna know if I got a asp page in a location A and wanna connect to the
    SQL database in a server with IP address 144.214.87.11 through the Internet,
    then how can I configure in the SQL Server 2000?? I'm just a newbie, please
    help. Many thanks!!


    chris Guest

  2. Similar Questions and Discussions

    1. Video seek bar: required improvement
      Does any one has a solution for the video seek bar in flash 8 - the rewinding and forwarding is possible by dragging the pointer however the same is...
    2. Hide and Seek Tools
      I have lost my main tool selector. I tried to hide it and then show it (command-F2), but it did not reappear. Any ideas?
    3. quicktime seek and currentime
      Hello I am trying to make a program which has power point slides(jpgs) and a talking head video which is in quicktime format.....i need to...
    4. illegal seek
      I was debugging a totally unrelated problem yesterday and put in a quick and dirty print line with $! in it. Now as it happened the bit of code I...
    5. Win32 ADO Seek method
      When I use the ADO Seek method, I always get the first record in the recordset, regardless of the value of the search key. Has anyone else had...
  3. #2

    Default Re: seek for help

    chris wrote:
    > ...I just wanna know if I got a asp page in a location A and wanna
    > connect to the SQL database in a server with IP address 144.214.87.11
    > through the Internet, then how can I configure in the SQL Server
    > 2000??
    Just a little o/t for this goup, but IIRC there isn't much you have to do
    with SQLServer apart from setting up the users with the necessary
    permissions.

    --
    William Tasso - [url]http://WilliamTasso.com[/url]


    William Tasso Guest

  4. #3

    Default Re: seek for help

    .... 'through the internet' ...

    Security, security and more security.

    1. Through a NAT on the router that is connected to the internet (directs
    traffic on 1433 - consider changing the internet side listening port to
    something other than the standard 1433 to avoid scanners) to point to the
    internal SQL server.
    But, make sure you *lock* down the logins such as 'sa' etc and never login
    with a user that is a sysadmin role. Make sure you get a lot of advice and
    preferably read a book on SQL security first.
    2. Use the SQL Server web XML interface for requests in XML format (can be
    reconverted to classic ADO recordset easily). Easier to manage security etc.
    for this since you only configure specific things to be available through
    it.
    3. Use a secured VPN to make sure the traffic is encrypted. This allows full
    access to the SQL server via IP address and keeps nosy prying internet eyes
    from trying to get at it.

    Hope this gives you a few pointers.

    Chris.

    "William Tasso" <news27@tbdata.com> wrote in message
    news:eC14yoolDHA.3288@tk2msftngp13.phx.gbl...
    chris wrote:
    > ...I just wanna know if I got a asp page in a location A and wanna
    > connect to the SQL database in a server with IP address 144.214.87.11
    > through the Internet, then how can I configure in the SQL Server
    > 2000??
    Just a little o/t for this goup, but IIRC there isn't much you have to do
    with SQLServer apart from setting up the users with the necessary
    permissions.

    --
    William Tasso - [url]http://WilliamTasso.com[/url]



    Chris Barber Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139