Click here to Skip to main content
15,893,668 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hello all, can anybody give the differences between MS Access and Sql server. Thanks in advance.
Posted
Comments
Sergey Alexandrovich Kryukov 17-Dec-12 0:48am    
Totally invalid question. How would you define "major" and "differences"?.. basically, SQL server is a server, but MS Access is not; it does not use even the client-server model. MS Access is not anything serious at all, I would warn against using it...
—SA

One huge difference is that Sql Server is a database management system whereas Access is not. Why I'm saying this is that in Access all the responsibility of the actual database operations is scattered on clients using the Access files. In Sql Server there's a database engine which takes the responsibility of actual operations such as file handling, optimization, memory management and so on.

So basically the concept for access is using just a shared file and the client side drivers are doing the management. In Access the operations are done via file manipulation from the client side whereas in Sql Server the client communicates with the database engine using SQL.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900