Online databases for trying out Oracle SQL queries?

SqlDatabaseOracle

Sql Problem Overview


I am studying for an undergraduate databases course.

I'd like to know if there are any online sites that allow me to do queries against an already built and populated database (with a known schema), so I didn't have to install SQL and populate it with data myself.

I am currently doing some exercises by hand on a workbook I have here, but I'm a bit afraid that I might be doing them wrong and it's hard to check their correctness without testing them against the "real thing".

Thanks

(In our course we are using Oracle)

Sql Solutions


Solution 1 - Sql

Have you tried SQLZoo ?

You can (for free) install SQL Server 2008 R2 Express Edition, and download and install already populated databases (such as AdventureWorks2008) from here. Both installs are straight forward.

Solution 2 - Sql

If you don't want to go far, do try the StackExchange Data Explorer:

> About > > Stack Exchange Data Explorer allows you to run arbitrary queries on the Stack Exchange public data dumps.

It's fast and supports a SQLServer-like T-SQL syntax.

Solution 3 - Sql

Give Stack Exchange's Data Explorer a spin.


For Oracle specific queries, you can signup for Oracle's Apex which gives you a pre-populated schema based on the Employees/Departments table

Solution 4 - Sql

You can easily install MySQL/PostgreSQL/SQL Server Express and get up and running, also whatever test data might be installed on a publicly available server won't necessarily stay the same between queries, since anyone can access it.

So just go ahead and install one of the above, you'll thank yourself in the near future.

Solution 5 - Sql

Maybe not exactly what you are looking for, by SQLZoo Tutorials allow you to practice some basic interactions, and also allow you to interact with a number of different SQL Engines.

http://sqlzoo.net/

Solution 6 - Sql

Try out this Interactive SQL site. It looks what are you looking for

Solution 7 - Sql

You could try installing WAMP Server. This comes with MySQL and a UI of phpMyAdmin that you can use to install and test databases. Then you can install the MySQL test employees database.

Solution 8 - Sql

For very simple queries, you can try SQL queries online in the W3Schools SQL Try It page - http://www.w3schools.com/sql/sql_tryit.asp

Or you can use the online demo of phpMyAdmin at http://demo.phpmyadmin.net/STABLE/?pma_username=root for deeper use.

Solution 9 - Sql

Oracle Apex provides online space for you to create and execute your sql queries. Please create an account with Oracle Apex and then enjoy with your personalised tablespace and schema. This is freeware and Oracle doesn't charge anything for this. It is the best way if you don't want to install Oracle on your system and don't want to slow down your system. Another advantage of Oracle Apex is that you have all your tables and data online and you don't have to maintain it, Oracle will do that for you. You can access your database from anywhere you want.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questiondevoured elysiumView Question on Stackoverflow
Solution 1 - SqlMitch WheatView Answer on Stackoverflow
Solution 2 - SqlSklivvzView Answer on Stackoverflow
Solution 3 - SqlSathyajith BhatView Answer on Stackoverflow
Solution 4 - SqlocodoView Answer on Stackoverflow
Solution 5 - SqlLuke StevensonView Answer on Stackoverflow
Solution 6 - SqlChingiz MusayevView Answer on Stackoverflow
Solution 7 - Sqlicc97View Answer on Stackoverflow
Solution 8 - SqlSparkyView Answer on Stackoverflow
Solution 9 - SqlSushant ButtaView Answer on Stackoverflow