Results 1 to 10 of 10

Thread: What should I use: SQL Express or MySQL

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2005
    Posts
    310

    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.....

  2. #2
    A SQL Server fool GaryMazzone's Avatar
    Join Date
    Aug 2005
    Location
    Dover,NH
    Posts
    7,493

    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

  3. #3
    Learning .Net danasegarane's Avatar
    Join Date
    Aug 2004
    Location
    VBForums
    Posts
    5,853

    Re: What should I use: SQL Express or MySQL

    Please mark you thread resolved using the Thread Tools as shown

  4. #4

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2005
    Posts
    310

    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.....

  5. #5
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: What should I use: SQL Express or MySQL

    Quote Originally Posted by danasegarane View Post
    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.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  6. #6
    A SQL Server fool GaryMazzone's Avatar
    Join Date
    Aug 2005
    Location
    Dover,NH
    Posts
    7,493

    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

  7. #7
    Learning .Net danasegarane's Avatar
    Join Date
    Aug 2004
    Location
    VBForums
    Posts
    5,853

    Re: What should I use: SQL Express or MySQL

    Quote Originally Posted by jmcilhinney View Post
    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

  8. #8

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2005
    Posts
    310

    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.....

  9. #9
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    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).

  10. #10

    Thread Starter
    Hyperactive Member
    Join Date
    Nov 2005
    Posts
    310

    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
  •  



Click Here to Expand Forum to Full Width