473,653 Members | 2,968 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why choose SQL Express over Access?

It is like comparing a VW bug with a Mercedes.

JET has corruption problems.
It is not meant for use over the internet.
It is not meant for more that 3 or 4 users.
No clear migration path to higher end DBs.
Limited capacity.
Slow.
File system based technology.
File copy of empty MDB file for data to specific directory structure.
Poor security model.

SQL Express is meant for up to 10 users.
It is faster.
It gives you a full migration path to full SQL Server.
With the new release you have admin tools.
Multiple instances can be deployed for individual applications.
Server based technology.
Can be installed with a tool like Win Batch.
Specific DBs created after install as part of the install script using
Win Batch.
SQL Server security model.

Also, when will everyone get it through their heads. JET is a database
engine that Access uses, just like it uses SQL Server. Access is a GUI
and programming environment. Asking SQL Express or Access is like
asking VB or SQL Express, it is like apples and oranges.

Jun 1 '06 #1
4 3688
On 1 Jun 2006 05:45:15 -0700, "raibeart" <ra******@gmail .com> wrote:

¤ It is like comparing a VW bug with a Mercedes.
¤

Not really. They both have advantages over the other depending upon the
environment.

¤ JET has corruption problems.

If not maintained properly yes this can be problem.

¤ It is not meant for use over the internet.

Probably not, but certainly can be in environments that are not high volume.

¤ It is not meant for more that 3 or 4 users.

Nah, concurrent usage is a little better than that.

¤ No clear migration path to higher end DBs.

You can migrate to SQL Server. Access has an upsizing wizard to do so.

¤ Limited capacity.

Yeah, 2GB. SQL Express is also limited to 4GB.

¤ Slow.

Not inherently no. OLEDB performance isn't great, but DAO will beat the pants
off of SQL Server.

¤ File system based technology.

Which makes it portable, with limited database engine technology.

¤ File copy of empty MDB file for data to specific directory structure.

?

¤ Poor security model.

Yeah, certainly not the best.

¤ SQL Express is meant for up to 10 users.

And probably more reliable than Access.

¤ It is faster.

Not from my experience.

¤ It gives you a full migration path to full SQL Server.
¤ With the new release you have admin tools.

Yes, but the tools (especially end user) from Access are far superior.

¤ Multiple instances can be deployed for individual applications.
¤ Server based technology.

Which means it's less portable, but significantly more flexible in a multi-user
environment.

¤ Can be installed with a tool like Win Batch.

I'm assuming you're referring to the files and not SQL Express itself which
requires some configuration.

¤ Specific DBs created after install as part of the install script using
¤ Win Batch.
¤ SQL Server security model.

Yup, much better here.

¤ Also, when will everyone get it through their heads. JET is a database
¤ engine that Access uses, just like it uses SQL Server. Access is a GUI
¤ and programming environment. Asking SQL Express or Access is like
¤ asking VB or SQL Express, it is like apples and oranges.

Interesting points.

In addition, Access was designed to be more of an end-user self-contained and
portable application based, passive data store while SQL Server Express is still
more suited for developers looking for a more robust data store with built-in
dynamic capabilities that with a little effort can also be used in a local
application database scenario.

Paul
~~~~
Microsoft MVP (Visual Basic)
Jun 1 '06 #2
What's your opinion of "MySQL"?
--
Dennis in Houston
"Paul Clement" wrote:
On 1 Jun 2006 05:45:15 -0700, "raibeart" <ra******@gmail .com> wrote:

¤ It is like comparing a VW bug with a Mercedes.
¤

Not really. They both have advantages over the other depending upon the
environment.

¤ JET has corruption problems.

If not maintained properly yes this can be problem.

¤ It is not meant for use over the internet.

Probably not, but certainly can be in environments that are not high volume.

¤ It is not meant for more that 3 or 4 users.

Nah, concurrent usage is a little better than that.

¤ No clear migration path to higher end DBs.

You can migrate to SQL Server. Access has an upsizing wizard to do so.

¤ Limited capacity.

Yeah, 2GB. SQL Express is also limited to 4GB.

¤ Slow.

Not inherently no. OLEDB performance isn't great, but DAO will beat the pants
off of SQL Server.

¤ File system based technology.

Which makes it portable, with limited database engine technology.

¤ File copy of empty MDB file for data to specific directory structure.

?

¤ Poor security model.

Yeah, certainly not the best.

¤ SQL Express is meant for up to 10 users.

And probably more reliable than Access.

¤ It is faster.

Not from my experience.

¤ It gives you a full migration path to full SQL Server.
¤ With the new release you have admin tools.

Yes, but the tools (especially end user) from Access are far superior.

¤ Multiple instances can be deployed for individual applications.
¤ Server based technology.

Which means it's less portable, but significantly more flexible in a multi-user
environment.

¤ Can be installed with a tool like Win Batch.

I'm assuming you're referring to the files and not SQL Express itself which
requires some configuration.

¤ Specific DBs created after install as part of the install script using
¤ Win Batch.
¤ SQL Server security model.

Yup, much better here.

¤ Also, when will everyone get it through their heads. JET is a database
¤ engine that Access uses, just like it uses SQL Server. Access is a GUI
¤ and programming environment. Asking SQL Express or Access is like
¤ asking VB or SQL Express, it is like apples and oranges.

Interesting points.

In addition, Access was designed to be more of an end-user self-contained and
portable application based, passive data store while SQL Server Express is still
more suited for developers looking for a more robust data store with built-in
dynamic capabilities that with a little effort can also be used in a local
application database scenario.

Paul
~~~~
Microsoft MVP (Visual Basic)

Jun 3 '06 #3
On Fri, 2 Jun 2006 16:57:02 -0700, Dennis <De****@discuss ions.microsoft. com> wrote:

¤ What's your opinion of "MySQL"?

Actually I haven't used it so I can't offer much of an opinion. But based upon the little research
I've done I would say it's a poor man's SQL Server. That doesn't mean I think it's bad, just that it
isn't comparable with respect to features.
Paul
~~~~
Microsoft MVP (Visual Basic)
Jun 5 '06 #4
Thanks for you input. I have used it in one web application and it worked ok
but does have limitations including documentation. However, when I tried to
put it on my actual web site running under my service provider, it was very
difficult to get it uploaded...not nearly so easy as an SQL or Access
database. I never did get it uploaded.
--
Dennis in Houston
"Paul Clement" wrote:
On Fri, 2 Jun 2006 16:57:02 -0700, Dennis <De****@discuss ions.microsoft. com> wrote:

¤ What's your opinion of "MySQL"?

Actually I haven't used it so I can't offer much of an opinion. But based upon the little research
I've done I would say it's a poor man's SQL Server. That doesn't mean I think it's bad, just that it
isn't comparable with respect to features.
Paul
~~~~
Microsoft MVP (Visual Basic)

Jun 6 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

74
3761
by: ljh | last post by:
Why would you choose SQL Express (which requires an installed application to work) over the simplicity of an Access database which has no dependencies?
0
8283
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8811
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8470
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8590
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7302
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6160
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4291
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1914
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1591
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.