Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Server for testing on the web

Is there a possibility to connect to a SQL Server database that is on the web and create there some tables queries etc. for testing purposes?

This would be useful when you don't want to install SQL Server (e.g. you are on another OS) but still are interested in this technology. It would be great if there would a possibility to connect to your database created there programmatically too.

like image 223
xralf Avatar asked Jun 13 '12 09:06

xralf


People also ask

Can I practice SQL Server online?

Similar to SQL Fiddle, DB-Fiddle.com is an online SQL playground for aspiring developers to practice their SQL queries, test code, and share SQL snippets. If you're looking to practice what you've learned in the LearnSQL.com practice course, the DB Fiddle “Load Example” feature is a great place to start.

Can you use SQL in a web application?

MySQL is a popular open source database management system commonly used in web applications due to its speed, flexibility and reliability. MySQL employs SQL, or Structured Query Language, for accessing and processing data contained in databases.

How do I run SQL Server in browser?

To start SQL Server Browser ServiceRight-click SQL Server Browser, and then choose Properties. On the Service tab of the SQL Server Browser dialog box, set the Start mode to Automatic. Choose OK to return to the SQL Server Configuration Manager main page. Right-click SQL Server Browser again, and then choose Start.


1 Answers

You could use SQL Fiddle and run your queries in SQL Server 2008 R2 or 2012 mode:

http://sqlfiddle.com/

like image 181
Darren Avatar answered Nov 15 '22 21:11

Darren