Moving Databases To A Different Box

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Moving Databases To A Different Box

    Hey all,

    One of the guys I work with is fanagling for us to get
    another box for the Web site we work on. The plan is to
    relocate all the databases (currently Access, but will
    eventually be converted to SQL Server) to this new machine.

    At present all the databases and ASP/HTML files reside on
    the same machine - Windows 2000 Advances Server.

    Two questions -

    1) If we do this, does the box with the databases need to
    have advanced server, or since it's only serving as a data
    source, can we get away with just having Windows XP or
    something?

    2) Would a setup such as this increase security for the
    data within the databases? If not, what other advantages
    are there to this (assuming that disk space is not a
    critical issue).
    MDW Guest

  2. Similar Questions and Discussions

    1. ASP & Databases
      "Jim Bowman" <anonymous@discussions.microsoft.com> wrote in message news:153dc01c41a95$698241d0$a601280a@phx.gbl... This worked for me: 1) ...
    2. Moving Randomly Moving Sprite To New Location on mouseEnter
      Hi All, This is way over my head. I am currently using Director 8. I have a randomly moving sprite(call it X) on stage (I accomplished this...
    3. PHP and databases
      I am completely new to PHP and have a couple questions. Can PHP access Microsoft Access databases? Are there any basic scripts, any good sites...
    4. Federated Databases, joins across databases etc
      Greetings, I want to do a join between 2 tables on 2 different db2 databases on the same server. I assume that I have to use federated databases. I...
    5. One vs many databases
      Hi Gang, I'm looking at submitting a business case to management that will justify changing from our current structure of many oracle databases...
  3. #2

    Default Re: Moving Databases To A Different Box

    MDW wrote:
    > Hey all,
    >
    > One of the guys I work with is fanagling for us to get
    > another box for the Web site we work on. The plan is to
    > relocate all the databases (currently Access, but will
    > eventually be converted to SQL Server) to this new machine.
    >
    I would wait until you move to SQL Server to do this. Connecting to Access
    databases on remote servers, while possible, has proven problematic for many
    people. If you do this, make sure you carefully read this article:
    [url]http://www.aspfaq.com/show.asp?id=2168[/url] along with the relevant KB articles
    cited in the article.
    > At present all the databases and ASP/HTML files reside on
    > the same machine - Windows 2000 Advances Server.
    >
    It is definitely recommended that SQL Server and IIS be on different
    machines.
    > Two questions -
    >
    > 1) If we do this, does the box with the databases need to
    > have advanced server,
    No
    > or since it's only serving as a data
    > source, can we get away with just having Windows XP or
    > something?
    >
    The current version of SQL Server (2000) will not install on XP, so the
    other box should be W2000.
    > 2) Would a setup such as this increase security for the
    > data within the databases?
    No.
    Hopefully, you have your Access databases in folders that are outside the
    wwwroot structure already.
    > If not, what other advantages
    > are there to this (assuming that disk space is not a
    > critical issue).
    For SQL Server to work most efficiently, it's got to have a pretty free rein
    over system resources. This can take resources away from other applications
    which need them (such as IIS). You can limit the amount of resources that
    are taken by SQL Server, but that limits its performance. it is best to have
    the servers on different boxes..

    HTH,
    Bob Barrows

    --
    Microsoft MVP - ASP/ASP.NET
    Please reply to the newsgroup. This email account is my spam trap so I
    don't check it very often. If you must reply off-line, then remove the
    "NO SPAM"


    Bob Barrows Guest

  4. #3

    Default Re: Moving Databases To A Different Box

    > > or since it's only serving as a data
    > > source, can we get away with just having Windows XP or
    > > something?
    > >
    >
    > The current version of SQL Server (2000) will not install on XP, so the
    > other box should be W2000.
    Yep. Relevant articles:
    [url]http://www.aspfaq.com/2202[/url]
    [url]http://www.aspfaq.com/2494[/url]

    --
    Aaron Bertrand
    SQL Server MVP
    [url]http://www.aspfaq.com/[/url]


    Aaron Bertrand [MVP] 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