I want to execute programs of PL/SQL on-line for practice. Can any one suggest me any websites which will compile and run the code and show the result? Thank you.
Asked
Active
Viewed 1.2e+01k times
2 Answers
17
Below are some of the online websites that can help in executing Oracle SQL queries and PL/SQL Code -
Oracle Live Sql - All your PL/SQL scripts can be saved
Sql Fiddle - Easily create schemas and queries and share them with others.
Oracle Apex -Test out Apex, which also lets you create objects and run scripts.
Sql Zoo - Interactive SQL tutorial. PL/SQL coding ground- create objects and run scripts
Tutorials Point- create objects and run scripts
In coding ground you can execute .sql scripts by using below steps.
1.Click on new project.
2.Click on '+' symbol.
-- A new .sql file will be created (Newfile.sql)
3.Execute the .sql as @filename.sql (Ex :
@Newfile.sql
)

mahi_0707
- 1,030
- 9
- 17