Databases

Soldato
Joined
26 Aug 2005
Posts
6,901
Location
London
Hi guys,

We use Oracle SQL Developer at University to queries databases etc.

What application is required exactly to make databases?

Am all new to Oracle so sorry in advance. :)
 
Do you mean what applications can access a database or what creates a database?

Oracle/DB2/SQL server are the actual database engines/servers if you like, and pretty much anything can access them, whether it be web pages, specific programs, visual studio created programs, in all sorts of langauages, Delphi, C#, ASP, ASP.net etc etc.
 
triggerthat said:
Hi guys,

We use Oracle SQL Developer at University to queries databases etc.

What application is required exactly to make databases?

Am all new to Oracle so sorry in advance. :)
It'd probably be best to ask your lecturer about this, as there's so many answers to your question
 
if you use SQL developer to querie tables then acn't you just use that to create new ones??

i.e.
use DBName
Create Table TEST (
id INT NOT NULL,
.....
)
 
There should be a database manager - you then type your SQL queries in this - or in some text editor - can be tedious.
 
Back
Top Bottom