|
-
Oct 4th, 2010, 07:15 AM
#1
Thread Starter
Hyperactive Member
What should I use: SQL Express or MySQL
Hi, I have a current project which is storing some information of clients.
What is ideal backend should I use among the two?
This is some sort of clients inventory and target client could be almost 100,000 or less.
Ii it ok if I use SQL Express? If not, maybe I should go for MySQL. I don't wanna use MS Access for this project. Thanks.
VB 6.0 = "Self-Study" Then
vb.NET = "Self-Study" Then
C# = 'on going study.....
-
Oct 4th, 2010, 07:22 AM
#2
Re: What should I use: SQL Express or MySQL
Personally I prefer SQL Express over MySQL, but that is just my opinion
Sometimes the Programmer
Sometimes the DBA
Mazz1
-
Oct 4th, 2010, 07:23 AM
#3
Re: What should I use: SQL Express or MySQL
Please mark you thread resolved using the Thread Tools as shown
-
Oct 4th, 2010, 07:45 AM
#4
Thread Starter
Hyperactive Member
Re: What should I use: SQL Express or MySQL
In your estimate, how much disk space will consume when such kind of big numbers of clients information.
VB 6.0 = "Self-Study" Then
vb.NET = "Self-Study" Then
C# = 'on going study.....
-
Oct 4th, 2010, 07:49 AM
#5
Re: What should I use: SQL Express or MySQL
 Originally Posted by danasegarane
Um, doesn't that article argue the opposite?
Anyway, as a .NET developer, SQL Server Express is the easy option. It's free, support is built into VS and the .NET Framework, Management Studio is a very good admin tool and 2008 R2 supports databases up to 10GB. If the decision is yours and it will be on Windows, there doesn't seem to be a reason not to use it.
-
Oct 4th, 2010, 07:52 AM
#6
Re: What should I use: SQL Express or MySQL
That depends on you database, what does each row look like? What is the database design? If using VARCHAR or NVARCHAR, CHAR or NCHAR. Are you storing Binary data in the database (pictures, zips, pdfs, docs, spreadsheets,....).
This all makes a difference on how big a database gets. What about indexing, what columns what type of columns, if you use SQL Server (even Express) are you using covering indexes (INCLUED columns).
Sometimes the Programmer
Sometimes the DBA
Mazz1
-
Oct 4th, 2010, 07:58 AM
#7
Re: What should I use: SQL Express or MySQL
 Originally Posted by jmcilhinney
Um, doesn't that article argue the opposite?
Anyway, as a .NET developer, SQL Server Express is the easy option.

Please mark you thread resolved using the Thread Tools as shown
-
Oct 4th, 2010, 08:06 AM
#8
Thread Starter
Hyperactive Member
Re: What should I use: SQL Express or MySQL
@Gary
Most of it are using VARCHAR.
It also save some pics. But pics are save only the path and filename. I thinks it has 30 columns or more.But no binary included in storing.
@jm
maybe I should go for SQL Server coz its on Windows. Or else maybe I need to read more about the two.
Btw, 100k of records does how much disk should occupy in your estimate.
Thanks.
Last edited by dr_aybyd; Oct 4th, 2010 at 08:11 AM.
VB 6.0 = "Self-Study" Then
vb.NET = "Self-Study" Then
C# = 'on going study.....
-
Oct 4th, 2010, 08:23 AM
#9
Re: What should I use: SQL Express or MySQL
Thread moved to 'Database Development' forum
100k of records can take anywhere from 100 KB to many terabytes. It all depends on the data you are storing - including the data types of the fields (eg: integers generally take 2 or 4 bytes, and varchar about 10 bytes plus 1 per character), and how much data is stored for each row in variable-length fields (such as varchar).
-
Oct 4th, 2010, 08:48 AM
#10
Thread Starter
Hyperactive Member
Re: What should I use: SQL Express or MySQL
Thanks for your all inputs.
VB 6.0 = "Self-Study" Then
vb.NET = "Self-Study" Then
C# = 'on going study.....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|