vote up 2 vote down star
2

Hi! I'm novice in oracle.I'm using oracle express 10.2.0 but i don't know how to create my own database and where my database is created.(The path of my new database).

flag

4 Answers

vote up 3 vote down

Not to be confused : in Oracle terminology, a database instance (called XE) is automatically created during installation (limitation : there can be only one database instance running at a time in Oracle Express).

What other vendors usually call a database (like in Sql Server) is a Schema in Oracle. To create one, use the CREATE USER command (and not the CREATE SCHEMA command : welcome to the marvelous world of Oracle !), using SQL*Plus or APEX.

link|flag
I may be wrong but I think that the limitation is actually that you can only run one instance at a time. See devtime.blogspot.com/2006/01/… – Pascal Thivent Oct 12 at 12:47
That's right : my phrasing was misleading. – Mac Oct 12 at 13:57
vote up 0 vote down

Oracle 10g XE comes with the integrated browser interface. You can access it from http://machine-name:port/xe

It is almost similar to Oracle Enterprise manager. You can also try using Oracle Application Express on it, and develop web applications.

link|flag
vote up 0 vote down

Creating a new database is easiest with the web frontend. Look inside the start menu for oracle.

link|flag
vote up 1 vote down

I think it's possible to create a database schema through the web administration interface. Check the Getting Started Guide from the Oracle Database 10g Express Edition.

For the path to the files, this article may help: Creating an Oracle (XE) database manually on XP.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.