Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default How bad is Access?

    Hello everyone,
    What kind of problems does Access have? If 10 users log on at the same time,
    will the database explode? I wanted to find out exactly how many users it would
    take to cause a problem and what kind of problem does it cause?

    Also, if I start on Access then move on to a more powerful database in the
    future... is it very difficult to change my connection from Access to SQL
    Server or something like that? Or does that involve re-making many parts of my
    site? I intend to use ASP.net and am wondering what is the best way to go.

    Thanks
    James

    dischord13 Guest

  2. Similar Questions and Discussions

    1. Web Service + Anon Access, but getting 401 Access Denied Error
      I have a simple webservice that just returns a string. The security for this is set to windows authentication in IIS (XP Professional) and anonymous...
    2. Network File access using anonymous access
      I have seen a number of entries related to accessing remote resources (files in my case) that need to reside on a remote server. We must leave our...
    3. Access 2002 PDFWriter VBA Code w/WinXP does not work like Access 2000
      I am trying to print an Access 2002 report (Windows XP OS) as a PDF. I had success with Access 2000 in a Windows 2000 environment, but as soon as I...
    4. Access Violation when using Visual Interdev to access Oracle
      I am running Windows 200 Pro, IIS 5.0 and trying to connect to an Oracle 8.1 database. Prior to applying a security patch to W2k, the ASP...
    5. Access denied when creating Access application object
      In an ASP file I am running the following in VBScript in order to extract data from an Access 2002 MDB file which is physically located in the...
  3. #2

    Default Re: How bad is Access?

    On 23 Apr 2005 in macromedia.dreamweaver.appdev, dischord13 wrote:
    > What kind of problems does Access have?
    Other than bloated datafiles and what I consider a counterintuitive
    interface?
    > If 10 users log on at the same time,
    > will the database explode? I wanted to find out exactly how many
    > users it would take to cause a problem and what kind of problem does
    > it cause?
    There are limitations as to the number of concurrent users. Why not
    round up a bunch of people and stress-test it? Microsoft claims that
    the maximum number of concurrent connections is 255[1]; I've seen
    other numbers that suggest lower. Remember, though, that 'concurrent
    users' means an active data connection. If I visit your page and draw
    the data then sit and look at it, I'm not a concurrent user until I go
    back for more data. Look at your raw log files and see how hard
    you're getting hit.
    > Also, if I start on Access then move on to a more powerful database
    > in the future... is it very difficult to change my connection from
    > Access to SQL Server or something like that? Or does that involve
    > re-making many parts of my site? I intend to use ASP.net and am
    > wondering what is the best way to go.
    From what I understand, absent a little tinkering with the SQL, Access
    databases scale really well to SQL Server.

    One other suggestion I've seen for performance is to use DSN-Less
    connections rather than system DSN. It's apparently faster and more
    efficient because of fewer system calls.

    [1] [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k/html/acmsdeop.asp[/url]
    --
    Joe Makowiec
    [url]http://makowiec.net/[/url]
    Email: [url]http://makowiec.net/email.php[/url]
    Joe Makowiec Guest

  4. #3

    Default Re: How bad is Access?

    On 23 Apr 2005 in macromedia.dreamweaver.appdev, dischord13 wrote:
    > What kind of problems does Access have?
    <snip>

    Further treatment on the topic:
    [url]http://www.15seconds.com/issue/010514.htm[/url]

    --
    Joe Makowiec
    [url]http://makowiec.net/[/url]
    Email: [url]http://makowiec.net/email.php[/url]
    Joe Makowiec Guest

  5. #4

    Default Re: How bad is Access?

    Great feedback. Thanks Joe.
    dischord13 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