About 124,000 results
Open links in new tab
  1. How to create a new schema/new user in Oracle Database 11g?

    Feb 20, 2019 · For complete newcomers to Oracle, the process is simplified if you are able to use Oracle Database XE. XE provides a Web UI to create a new user/schema (aka "Application Express …

  2. Difference between a user and a schema in Oracle?

    May 18, 2009 · Oracle schemas are like My Documents folders in the Windows OS. A user can grant permissions to other users to see things in their schema. Oracle schema is essentially a user's …

  3. Oracle - How to create a readonly user - Stack Overflow

    Sep 21, 2011 · It's possible create a readonly database user at an Oracle Database? How?

  4. Using CREATE SCHEMA AUTHORIZATION - Stack Overflow

    Oct 5, 2022 · The schema name must be the same as your Oracle Database username. Setting current_schema only changes the default schema name prepended to an object reference in a SQL …

  5. oracle11g - Create Schema in Oracle 11g - Stack Overflow

    May 29, 2013 · I am trying to create a new Schema in Oracle 11g. I have referred to the Oracle documentation I have tried to execute the commands mentioned there. CREATE SCHEMA …

  6. How creating a new database schema for an Oracle 18c XE installation

    Jul 29, 2021 · The create schema statement creates objects under your existing schema; which is synonymous with a user in Oracle. If you want to create a new schema then you need to create a …

  7. How to create new schema and list all schema name in oracle

    Apr 17, 2013 · I want to create one new schema in oracle and I used sample code, which is available here CREATE SCHEMA AUTHORIZATION oe CREATE TABLE new_product (color …

  8. How to generate entire DDL of an Oracle schema (scriptable)?

    58 Can anyone tell me how I can generate the DDL for all tables, views, indexes, packages, procedures, functions, triggers, types, sequences, synonyms, grants, etc. inside an Oracle schema? Ideally, I …

  9. error: ORA-65096: invalid common user or role name in Oracle database

    Mar 19, 2019 · I just installed Oracle database, and it was missing the SCOTT schema. So I am trying to generate it myself. I got the sql script of Scott schema, but when I try to run the query CREATE …

  10. Creating schema for oracle sql developer - Stack Overflow

    Oct 6, 2021 · 1 Well, SQL Developer you downloaded is just a tool you'd use to access an Oracle database. What you need next is the database itself. Once you download & install it, create user …