473,583 Members | 3,114 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SQL or Access DB

Hi all

I am planning on writing a stock and accounts program for the family
business, I understand this is likely to take close to 2 years to
accomplish. The stock is likely to run into over a thousand items and
the accounting side will be used for hopefully many years so the
entries are likely to be vast.

The delema is what is best to use ase the DB engine, Access I have as
part of Office 2002 or should I really be looking at SQL server??

What are the pros and cons between the two??

The DB will only be accessed by one client at this time but never more
than 2.

If the choice is SQL Server is there a version available just for
single clients. I remember using MSDE when I did my ASP.Net book can
this be used to create the initial DB???

Thanks for taking the time to read this, any advice would be very
helpfull to me at this planning stage.

--
DaveG - Learning VB.Net slowly.
Skøyen - Oslo - Norway
Nov 21 '05 #1
17 2473
If you say you will have large databases, then Access isn't too great, it
tends to get corrupted, etc. But I wouldn't consider 1000 items to be a
large number of items. So you should re-examine, if this database will truly
end up being large.

I think MSDE (or its next version, SQL Express) is probably your best bet if
you really will have a large database. I don't think you need to go all out
and buy SQL Server.

"DaveG" <ne*******@dave g.no.nospam> wrote in message
news:O9******** ************@te lenor.com...
Hi all

I am planning on writing a stock and accounts program for the family
business, I understand this is likely to take close to 2 years to
accomplish. The stock is likely to run into over a thousand items and
the accounting side will be used for hopefully many years so the
entries are likely to be vast.

The delema is what is best to use ase the DB engine, Access I have as
part of Office 2002 or should I really be looking at SQL server??

What are the pros and cons between the two??

The DB will only be accessed by one client at this time but never more
than 2.

If the choice is SQL Server is there a version available just for
single clients. I remember using MSDE when I did my ASP.Net book can
this be used to create the initial DB???

Thanks for taking the time to read this, any advice would be very
helpfull to me at this planning stage.

--
DaveG - Learning VB.Net slowly.
Skøyen - Oslo - Norway

Nov 21 '05 #2
Sql Server is soooo much better than access in just about every conceivable
way. If you are going to have multiple users hitting the db, then rule
access out right off of the bat. Access is a nightmare in networked
scenarios b/c it's not meant to be a network db (although it can function as
one).
Sql Server is light years better in security and as far as back up the same
holds. If you need point in time backup and recovery, then Sql Server is
the only choice.
Considering that Sql Server MSDE is free and has the same capacity as
Access- I'd forget that access even existed.
"DaveG" <ne*******@dave g.no.nospam> wrote in message
news:O9******** ************@te lenor.com...
Hi all

I am planning on writing a stock and accounts program for the family
business, I understand this is likely to take close to 2 years to
accomplish. The stock is likely to run into over a thousand items and
the accounting side will be used for hopefully many years so the
entries are likely to be vast.

The delema is what is best to use ase the DB engine, Access I have as
part of Office 2002 or should I really be looking at SQL server??

What are the pros and cons between the two??

The DB will only be accessed by one client at this time but never more
than 2.

If the choice is SQL Server is there a version available just for
single clients. I remember using MSDE when I did my ASP.Net book can
this be used to create the initial DB???

Thanks for taking the time to read this, any advice would be very
helpfull to me at this planning stage.

--
DaveG - Learning VB.Net slowly.
Skøyen - Oslo - Norway

Nov 21 '05 #3
Hi Dave,

I have to agree wholeheartedly with our MVP expert. When you have more than
one client then you shouldn't really be considering Access. You are correct
regarding MSDE. It is free and I have been using it myself for development
for a few months. I recently downloaded the newer sql express but haven't
had the time to look at it properly.

Yes, you can not only create your db using the tools within MSDE (such as
osql) and appropriate scripts, you can also fully run your db applications
with MSDE as your sql server. Go for it, it's fun!! :-)

Rgds,

Phil
"DaveG" <ne*******@dave g.no.nospam> wrote in message
news:O9******** ************@te lenor.com...
Hi all

I am planning on writing a stock and accounts program for the family
business, I understand this is likely to take close to 2 years to
accomplish. The stock is likely to run into over a thousand items and
the accounting side will be used for hopefully many years so the
entries are likely to be vast.

The delema is what is best to use ase the DB engine, Access I have as
part of Office 2002 or should I really be looking at SQL server??

What are the pros and cons between the two??

The DB will only be accessed by one client at this time but never more
than 2.

If the choice is SQL Server is there a version available just for
single clients. I remember using MSDE when I did my ASP.Net book can
this be used to create the initial DB???

Thanks for taking the time to read this, any advice would be very
helpfull to me at this planning stage.

--
DaveG - Learning VB.Net slowly.
Skøyen - Oslo - Norway

Nov 21 '05 #4
DaveG,

Not disagreeing with the others who wrote an answer before me, if this
application is for your own personal use, than take that MSDE (or better SQL
Express).

If you want to sell your program, keep than in mind that the Jet engine
(sometimes named Access db) is very easy and free to deploy. To overcome
confusions; Not the product of Microsoft named Access is free, only the use
of the Jet engine deployed by people who have a developer licence where that
is in their products.

(Sql Express should be easy to deploy as well, however that is not free so
you will than have to deal with licenses, MSDE is in my opinion a hell to
deploy)

Just as addition

Cor
Nov 21 '05 #5
If the database design is normalized, then it's less likely that size will
become an issue. A non-normalized database will grow exponentially.

JET ("Access") could be used, as I have in the past for a small system with
less than 10 users, but in time, you will sooner or later hit a locking
issue and/or possible corruption.

As noted by Cor, MSDE is a real bitch to deploy (the cynic in me says that
was by design), so the best "free" choice for a networked solution would be
SQL Express 2005. I'm not sure about the licensing issues in your scenario.

Otherwise, for a small business, if you don't already have a server
installed and plan to build a small network, you might consider buying Small
Business Server Premium. It comes with SQL Server 2000 Standard.

"DaveG" <ne*******@dave g.no.nospam> wrote in message
news:O9******** ************@te lenor.com...
Hi all

I am planning on writing a stock and accounts program for the family
business, I understand this is likely to take close to 2 years to
accomplish. The stock is likely to run into over a thousand items and
the accounting side will be used for hopefully many years so the
entries are likely to be vast.

The delema is what is best to use ase the DB engine, Access I have as
part of Office 2002 or should I really be looking at SQL server??

What are the pros and cons between the two??

The DB will only be accessed by one client at this time but never more
than 2.

If the choice is SQL Server is there a version available just for
single clients. I remember using MSDE when I did my ASP.Net book can
this be used to create the initial DB???

Thanks for taking the time to read this, any advice would be very
helpfull to me at this planning stage.

--
DaveG - Learning VB.Net slowly.
Skøyen - Oslo - Norway

Nov 21 '05 #6
Well ,,,,,,,

sorry to throw some gassoline on this firy thread

But as far as i know ,,,, ms Access , MSDE and SQL express are all free for
a Visual studio programmer

file security lets me stick to MS Access 2000

MSDE , SQL express , firebird , interbase etc etc all great databases
however they lack one key functionality that keeps me from using it in my
deployable apps
and that is security ,,,,, everyone with admin rights can look in your
database files and see your data , with access you can create a workgroup
file , encrypt the database and only your program can access the data

This is no problem if your users own the data , in my situation the data is
the core business ( this is were the value of the app is ) so you do not
want to have the concurency steal your data and create there own gui aropund
that data and sell this as there own product

i wish i could switch over to a reall RDBMS as our database files are
growing to gigabytes ,,,, however i must say about access it isn`t so bad as
people are telling here because our products are beeing used by thousands of
users throughout Europe and are even used on server farms with more as 50
users using the same program ( thus same DB ) however we are talking about
mostly read data with once in a while a price update

Also the ease to deploy your app with a Access DB,, well ,,, its just a
mather of xcopy and make sure Mdac is installed on the target system

I have once made a deploy package for MSDE and found myself coding in C++
to get everything how i wanted it ( check if there is already an instance,
naming etc etc ) , i understood that this is now much better with sql
express however now you should investigate Installer technology as eveything
is now in a Merge module that can be customized with these options ( MSDE
had also a MM but this lacked these options )

If i am truly honest ,,,,,,,, i must say that if file security was not an
issue i would probably now use the Firebird DB as it performs superb, is
free and is much easier to deploy , (XCOPY deployable , and it is multi
platform ),, there is even an embedded version , that can be scaled up to
the reall server version . and again i must say that this hurts me as i am a
true MS fanatic
regards

Michel Posseth [MCP]


"Earl" <br******@newsg roups.nospam> schreef in bericht
news:%2******** *******@TK2MSFT NGP09.phx.gbl.. .
If the database design is normalized, then it's less likely that size will
become an issue. A non-normalized database will grow exponentially.

JET ("Access") could be used, as I have in the past for a small system
with less than 10 users, but in time, you will sooner or later hit a
locking issue and/or possible corruption.

As noted by Cor, MSDE is a real bitch to deploy (the cynic in me says that
was by design), so the best "free" choice for a networked solution would
be SQL Express 2005. I'm not sure about the licensing issues in your
scenario.

Otherwise, for a small business, if you don't already have a server
installed and plan to build a small network, you might consider buying
Small Business Server Premium. It comes with SQL Server 2000 Standard.

"DaveG" <ne*******@dave g.no.nospam> wrote in message
news:O9******** ************@te lenor.com...
Hi all

I am planning on writing a stock and accounts program for the family
business, I understand this is likely to take close to 2 years to
accomplish. The stock is likely to run into over a thousand items and
the accounting side will be used for hopefully many years so the
entries are likely to be vast.

The delema is what is best to use ase the DB engine, Access I have as
part of Office 2002 or should I really be looking at SQL server??

What are the pros and cons between the two??

The DB will only be accessed by one client at this time but never more
than 2.

If the choice is SQL Server is there a version available just for
single clients. I remember using MSDE when I did my ASP.Net book can
this be used to create the initial DB???

Thanks for taking the time to read this, any advice would be very
helpfull to me at this planning stage.

--
DaveG - Learning VB.Net slowly.
Skøyen - Oslo - Norway


Nov 21 '05 #7
Earl,

Read this page
http://lab.msdn.microsoft.com/express/faq/#general

And than in that the question
Are the Express Edition products free?

Answer
Our plan is to offer the Express products for $49 per product when they are
released.

Just as addition.

Cor
Nov 21 '05 #8
well Cor you were in the wrong section this is about the Express editions of
the development tools

we were talking about the databases that MS offers for free ( or not ,,, as
some of you thought )

see this

http://msdn.microsoft.com/library/de...seoverview.asp

Summary: SQL Server Express, a free product based on SQL Server 2005
technology, includes the unique Application XCopy feature, and networking
and security that differ from other SQL Server 2005 editions. These topics
and the integration of SQL Server Express with Visual Studio 2005 are
discussed. Compare this product with the existing Microsoft free databases
like MSDE and Jet. (20 printed pages)

so as you read above the installation part is not an issue anymore as sql
express is now also xcopy deployable ,,, so if entrance to your data , from
anyone who has acces to the computer is not an issue i would say go for SQL
Express , however if entrance to this data should be protected go for a
Access solution

regards

Michel Posseth

"Cor Ligthert [MVP]" <no************ @planet.nl> schreef in bericht
news:%2******** **********@TK2M SFTNGP09.phx.gb l...
Earl,

Read this page
http://lab.msdn.microsoft.com/express/faq/#general

And than in that the question
Are the Express Edition products free?

Answer
Our plan is to offer the Express products for $49 per product when they
are released.

Just as addition.

Cor

Nov 21 '05 #9
Earl (in no way being contentious or argumentative) - I don't know about the
statement that MSDE is a bitch to deploy. It took me about a hour to
correctly write an installer project that installed MSDE correctly and set
everything up initially correctly. The first time through I'd say it's
about a 4 on a scale of 1 to 10, after that it's cake and I can easily whip
up an installer to install MSDE, set up the accounts and create the tables I
need in just a few minutes. Heck it takes longer to run than it does for me
to create the package.

THe problem with Access is concurrency mainly, but there are others. THe
non sql standard syntax like IsNull, the lack of any real db language,
security, backup and the like all make access a terrible choice in so many
respects. It was a great alternative in the early 90's, but now it's
nothing but headaches.

If the installation is a problem, drop me a line and I'll gladly walk you
through creating an installer that will include MSDE and set it up for you -
it's really simple and well worth the investment.
"Earl" <br******@newsg roups.nospam> wrote in message
news:%2******** *******@TK2MSFT NGP09.phx.gbl.. .
If the database design is normalized, then it's less likely that size will
become an issue. A non-normalized database will grow exponentially.

JET ("Access") could be used, as I have in the past for a small system
with less than 10 users, but in time, you will sooner or later hit a
locking issue and/or possible corruption.

As noted by Cor, MSDE is a real bitch to deploy (the cynic in me says that
was by design), so the best "free" choice for a networked solution would
be SQL Express 2005. I'm not sure about the licensing issues in your
scenario.

Otherwise, for a small business, if you don't already have a server
installed and plan to build a small network, you might consider buying
Small Business Server Premium. It comes with SQL Server 2000 Standard.

"DaveG" <ne*******@dave g.no.nospam> wrote in message
news:O9******** ************@te lenor.com...
Hi all

I am planning on writing a stock and accounts program for the family
business, I understand this is likely to take close to 2 years to
accomplish. The stock is likely to run into over a thousand items and
the accounting side will be used for hopefully many years so the
entries are likely to be vast.

The delema is what is best to use ase the DB engine, Access I have as
part of Office 2002 or should I really be looking at SQL server??

What are the pros and cons between the two??

The DB will only be accessed by one client at this time but never more
than 2.

If the choice is SQL Server is there a version available just for
single clients. I remember using MSDE when I did my ASP.Net book can
this be used to create the initial DB???

Thanks for taking the time to read this, any advice would be very
helpfull to me at this planning stage.

--
DaveG - Learning VB.Net slowly.
Skøyen - Oslo - Norway


Nov 21 '05 #10

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

Similar topics

63
5872
by: Jerome | last post by:
Hi, I'm a bit confused ... when would I rather write an database application using MS Access and Visual Basic and when (and why) would I rather write it using Visual Studio .Net? Is it as easy in Visual Studio to create reports and labels as it's in Access?` The advantage of VS.net is that not every user needs Access, right? And that...
13
2920
by: bill | last post by:
I am trying to convince a client that dotNet is preferable to an Access project (ADP/ADE). This client currently has a large, pure Access MDB solution with 30+ users, which needs to be upgraded. I believe a dotNet solution is better, but I'm trying to be as convincing as possible -- and maybe I'm wrong! I would appreciate any input or...
1
4330
by: Dave | last post by:
Hello NG, Regarding access-declarations and member using-declarations as used to change the access level of an inherited base member... Two things need to be considered when determining an inherited base member's access level in the derived class: its access level in the base class and the type of inheritance (public, protected, or...
13
13328
by: Simon Bailey | last post by:
I am a newcomer to databases and am not sure which DBMS to use. I have a very simplified knowledge of databases overall. I would very much appreciate a (simplifed) message explaining the advantages and disadvantages of both programs. Many Thanks Simon
0
2956
by: Frederick Noronha \(FN\) | last post by:
---------- Forwarded message ---------- Solutions to Everyday User Interface and Programming Problems O'Reilly Releases "Access Cookbook, Second Edition" Sebastopol, CA--Neither reference book nor tutorial, "Access Cookbook, Second Edition" (O'Reilly, US $49.95), by Ken Getz, Paul Litwin, and Andy Baron, delivers hundreds of practical...
20
3312
by: Olav.NET | last post by:
I am a .NET/C++ developer who is supposed to do some work with Access. I do not know much about it except for the DB part. Questions: *1* I am looking for INTENSIVE books to get quickly up to speed. I like books with practical exercises, and also with test questions (like cert books) *2*
64
5189
by: John | last post by:
Hi What future does access have after the release of vs 2005/sql 2005? MS doesn't seem to have done anything major with access lately and presumably hoping that everyone migrates to vs/sql. Any comments? Thanks
1
3327
by: com | last post by:
Extreme Web Reports 2005 - Soft30.com The wizard scans the specified MS Access database and records information such as report names, parameters and subqueries. ... www.soft30.com/download-1-11975.htm - 31k - Cached - Similar pages MDBSecure 1.0.8.0 - Soft30.com Utility which makes it easy to create secure MS Access Databases, ... MS...
17
4398
by: Mell via AccessMonster.com | last post by:
Is there a way to find out where an application was created from? i.e. - work or home i.e. - if application sits on a (work) server/network, the IT people know the application is sitting there, but is there a way they can find out if that application was put there from a CD or email or created at work? Hint: It's not on a client/server...
37
5200
by: jasmith | last post by:
How will Access fair in a year? Two years? .... The new version of Access seems to service non programmers as a wizard interface to quickly create databases via a fancy wizard. Furthermore, why would you even continue to use Access as a backend when you have a much superior option in SQL express? What about as a future front-end...
0
7896
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
8184
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. ...
0
8328
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7936
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...
1
5701
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...
0
3820
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3845
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2334
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1434
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.