Differences Between MySql and MS SQL - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T02:02:11Z http://stackoverflow.com/feeds/question/10616 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql 8 Differences Between MySql and MS SQL sestocker 2008-08-14T03:13:26Z 2008-11-23T23:27:54Z <p>I'm an ASP.NET developer who has used Microsoft SQL Server for all my database needs (both at work and for personal projects). I considering trying out the LAMP stack for some of my personal projects. What are some of the main differences between MySQL and MS SQL? Are using Stored Procedures a common practice in MySQL? Any advice or resources you'd recommend to help me with the switch? To those who have experience with both, are there any missing features from MySQL?</p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/10623#10623 22 Answer by Jeff Atwood for Differences Between MySql and MS SQL Jeff Atwood 2008-08-14T03:17:18Z 2008-08-14T03:17:18Z <p>One thing you have to watch out for is the fairly severe differences in the way MSSQL and MySQL implement the SQL syntax.</p> <p>Here's a nice <a href="http://troels.arvin.dk/db/rdbms/" rel="nofollow">Comparison of Different SQL Implementations</a>.</p> <p>For example, take a look at the top-n section. In MySQL:</p> <pre><code>SELECT age FROM person ORDER BY age ASC LIMIT 1 OFFSET 2 </code></pre> <p>in MSSQL (T-SQL):</p> <pre><code>SELECT TOP 3 WITH TIES * FROM person ORDER BY age ASC </code></pre> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/10628#10628 1 Answer by Jon Limjap for Differences Between MySql and MS SQL Jon Limjap 2008-08-14T03:20:06Z 2008-08-14T03:23:26Z <p>I think one of the major things to watch out is that versions prior to MySQL 5.0 did not have Views, Triggers, and Stored Procedures.</p> <p>More of this is explained in the <a href="http://dev.mysql.com/downloads/mysql/5.0.html#downloads" rel="nofollow">MySQL 5.0 Download page</a></p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/10632#10632 0 Answer by sestocker for Differences Between MySql and MS SQL sestocker 2008-08-14T03:26:35Z 2008-08-14T03:26:35Z <blockquote> <p>I think one of the major things to watch out is that versions prior to MySQL 5.0 did not have Views, Triggers, and Stored Procedures.</p> </blockquote> <p>Anyone have any good experience with a "port" of a database from SQL Server to MySQL? I use views all the time - it surprises me that MySQL did not support it until 5.0. I'd be curious as to people's experience with Stored Procedures, Views, Triggers, Constraints, Etc in MySQL?</p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/10900#10900 1 Answer by david for Differences Between MySql and MS SQL david 2008-08-14T11:24:57Z 2008-08-14T11:24:57Z <blockquote> <p>Anyone have any good experience with a "port" of a database from SQL Server to MySQL?</p> </blockquote> <p>This should be fairly painful! I switched versions of MySQL from 4.x to 5.x and various statements wouldn't work anymore as they used to. The query analyzer was "improved" so statements which previously were tuned for performance would not work anymore as expected. </p> <p>The lesson learned from working with a 500GB MySQL database: It's a subtle topic and anything else but trivial!</p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/18320#18320 3 Answer by Jon Galloway for Differences Between MySql and MS SQL Jon Galloway 2008-08-20T16:28:51Z 2008-08-20T16:28:51Z <p>MySQL is more likely to have database corruption issues, and it doesn't fix them automatically when they happen. I've worked with MSSQL since version 6.5 and don't remember a database corruption issue taking the database offline. The few times I've worked with MySQL in a production environment, a database corruption issue took the entire database offline until we ran the magic "please fix my corrupted index" thing from the commandline.</p> <p>MSSQL's transaction and journaling system, in my experience, handles just about anything - including a power cycle or hardware failure - without database corruption, and if something gets messed up it fixes it automatically.</p> <p>This has been my experience, and I'd be happy to hear that this has been fixed or we were doing something wrong.</p> <p><a href="http://dev.mysql.com/doc/refman/6.0/en/corrupted-myisam-tables.html" rel="nofollow"><a href="http://dev.mysql.com/doc/refman/6.0/en/corrupted-myisam-tables.html" rel="nofollow">http://dev.mysql.com/doc/refman/6.0/en/corrupted-myisam-tables.html</a></a></p> <p><a href="http://www.google.com/search?q=site%3Abugs.mysql.com+index+corruption" rel="nofollow"><a href="http://www.google.com/search?q=site%3Abugs.mysql.com+index+corruption" rel="nofollow">http://www.google.com/search?q=site%3Abugs.mysql.com+index+corruption</a></a></p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/51244#51244 0 Answer by Abdu for Differences Between MySql and MS SQL Abdu 2008-09-09T04:51:26Z 2008-09-09T04:51:26Z <p>Frankly, I can't find a single reason to use MySQL rather than MSSQL. The issue before used to be cost but SQL Server 2005 Express is free and there are lots of web hosting companies which offer full hosting with sql server for less than $5.00 a month.</p> <p>MSSQL is easier to use and has many features which do not exist in MySQL. </p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/51254#51254 1 Answer by Cebjyre for Differences Between MySql and MS SQL Cebjyre 2008-09-09T05:22:28Z 2008-09-09T05:35:14Z <p>@<a href="#51244" rel="nofollow">abdu</a></p> <p>The main thing I've found that MySQL has over MSSQL is timezone support - the ability to nicely change between timezones, respecting daylight savings is fantastic.</p> <p>Compare this:</p> <pre><code>mysql&gt; SELECT CONVERT_TZ('2008-04-01 12:00:00', 'UTC', 'America/Los_Angeles'); +-----------------------------------------------------------------+ | CONVERT_TZ('2008-04-01 12:00:00', 'UTC', 'America/Los_Angeles') | +-----------------------------------------------------------------+ | 2008-04-01 05:00:00 | +-----------------------------------------------------------------+ </code></pre> <p>to the contortions involved at <a href="http://beta.stackoverflow.com/questions/24797/effectively-converting-dates-between-utc-and-local-ie-pst-time-in-sql-2005#25073" rel="nofollow">this answer</a>.</p> <p>As for the 'easier to use' comment, I would say that the point is that they are different, and if you know one, there will be an overhead in learning the other.</p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/53150#53150 0 Answer by Abdu for Differences Between MySql and MS SQL Abdu 2008-09-09T23:36:18Z 2008-09-09T23:36:18Z <p>@Cebjyre. The IDE whether Enterprise Manager or Management Studio is better than anything I have seen so far for MySQL. I say 'easier to use' because I can do many things in MSSQL where MySQL has no counterparts. In MySQL I have no idea how to tune the queries by simply looking at the query plan or looking at the statistics. The index tuning wizard in MSSQL takes most of the guess work on what indexes are missing or misplaced. </p> <p>One shortcoming of MySQL is there's no max size for a database. The database would just increase in size till it fills up the disk. Imagine if this disk is sharing databases with other users and suddenly all of their queries are failing because their databases can't grow. I have reported this issue to MySQL long time ago. I don't think it's fixed yet.</p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/199915#199915 0 Answer by james2vegas for Differences Between MySql and MS SQL james2vegas 2008-10-14T03:21:57Z 2008-10-14T03:33:42Z <p>Serious downgrade, if you are switching from MSSQL to a free RDBMS, try something with a similar feature set like PostgreSQL rather than something closer to MS ACCESS than MSSQL.</p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/299898#299898 1 Answer by Ray Vega for Differences Between MySql and MS SQL Ray Vega 2008-11-18T19:48:18Z 2008-11-18T19:48:18Z <p><a href="http://adam.blog.heroku.com/past/2008/9/3/ddl_transactions/" rel="nofollow">MySQL does <strong>not</strong> support DDL transactions while SQL Server does.</a></p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/312893#312893 0 Answer by Einstein for Differences Between MySql and MS SQL Einstein 2008-11-23T20:09:37Z 2008-11-23T20:09:37Z <p>Spending some time working with MySQL from the MSSQL to MySQL syntax POV I kept finding myself limited in what I could do.</p> <p>There are bizzare limits on updating a table while refrencing the same table during an update.</p> <p>Additionally UPDATE FROM does not work and last time I checked they don't support the Oracle MERGE INTO syntax either. This was a show stopper for me and I stopped thinking I would get anywhere with MySQL after that.</p> http://stackoverflow.com/questions/10616/differences-between-mysql-and-ms-sql/312962#312962 1 Answer by le dorfier for Differences Between MySql and MS SQL le dorfier 2008-11-23T21:11:29Z 2008-11-23T23:27:54Z <p>Everything in MySQL seems to be done closer to the metal than in MSSQL, And the documentation treats it that way. Especially for optimization, you'll need to understand how indexes, system configuration, and the optimizer interact under various circumstances.</p> <p>The "optimizer" is more a parser. In MSSQL your query plan is often a surprise (usually good, sometimes not). In MySQL, it pretty much does what you asked it to do, the way you expected it to. Which means you yourself need to have a deep understanding of the various ways it might be done.</p> <p>Not built around a good TRANSACTION model.</p> <p>File-system setup is your problem.</p> <p>All the database configuration is your problem - especially various cache sizes.</p> <p>Sometimes it seems best to think of it as an ad-hoc, glorified isam. Codd and Date don't carry much weight here. They would say it with no embarrassment.</p>