Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8363757
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T12:15:50+00:00 2026-06-09T12:15:50+00:00

How to create a small and simple database using Oracle 11 g and SQL

  • 0

How to create a small and simple database using Oracle 11 g and SQL Developer ?
I am seeing too many errors and I cannot find any way to make a simple database.
For example

create database company; 

Caused the following error:

Error starting at line 1 in command:
create database company
Error at Command Line:1 Column:0
Error report:
SQL Error: ORA-01501: CREATE DATABASE failed
ORA-01100: database already mounted
01501. 00000 -  "CREATE DATABASE failed"
*Cause:    An error occurred during create database
*Action:   See accompanying errors.

EDIT-
This is completely different from MySQL and MS-SQL that I am familiar with.
Not as intuitive as I was expecting.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T12:15:51+00:00Added an answer on June 9, 2026 at 12:15 pm

    First off, what Oracle calls a “database” is generally different than what most other database products call a “database”. A “database” in MySQL or SQL Server is much closer to what Oracle calls a “schema” which is the set of objects owned by a particular user. In Oracle, you would generally only have one database per server (a large server might have a handful of databases on it) where each database has many different schemas. If you are using the express edition of Oracle, you are only allowed to have 1 database per server. If you are connected to Oracle via SQL Developer, that indicates that you already have the Oracle database created.

    Assuming that you really want to create a schema, not a database (using Oracle terminology), you would create the user

    CREATE USER company
      IDENTIFIED BY <<password>>
      DEFAULT TABLESPACE <<tablespace to use for objects by default>>
      TEMPORARY TABLESPACE <<temporary tablespace to use>>
    

    You would then assign the user whatever privileges you wanted

    GRANT CREATE SESSION TO company;
    GRANT CREATE TABLE TO company;
    GRANT CREATE VIEW TO company;
    ...
    

    Once that is done, you can connect to the (existing) database as COMPANY and create objects in the COMPANY schema.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using LinqToSql to query a small, simple SQL Server CE database. I've noticed
I need to code a small/simple database application using C, for my CS degree
I'm using NASM compiler to create small asm applications. I need to load my
Using CouchDB to create a hosted app for clients. I have a dev database
I need to create a simple web-based expense calculator. We're using asp.net web forms,
We have a small java based server (a simple app which fetches data using
I have created a small and simple android app. I tried installing it on
I create small application which is media player. I have method where I have
I would like to create small app (in C#) to switch active keyboards and
I'm trying to create a small slider where jquery UI Scale brings out and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.