Supplier2 Schema Oracle 11g Download
During a complete installation of your Oracle Database, the sample schemas can be installed automatically with the seed database. If the seed database is removed from the system, you will need to reinstall the sample schemas before you can perform the steps given in the examples that you find in Oracle documentation and training materials.
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL create user supplier2 identified by trpass123 default tablespace users quot.
This chapter describes how to install Product_Name. It contains the following sections:
Caution:
By installing any of the Oracle Database sample schemas, you will destroy any previously installed schemas that use any of the following user names:HR
, OE
, PM
, SH
, IX
, BI
.Data contained in any of these schemas will be lost if you run any of the installation scripts described in this section. You should not use the sample schemas for your personal or business data and applications. They are meant to be used for demonstration purposes only.
Using the Database Configuration Assistant
When you install Oracle Database with the Oracle Universal Installer, the sample schemas are installed by default if you select the Basic Installation option. Selecting the sample schemas option installs all sample schemas (HR
, OE
, PM
, SH
, IX
) in the database. If you choose not to install the sample schemas at that time, you can add them later by following the instructions in section 'Manually Installing Sample Schemas'.
At the end of the installation process, a dialog box displays the accounts that have been created and their lock status. By default, all sample schemas are locked and their passwords are expired. Before you can use a locked account, you must unlock it and reset its password. You can unlock the accounts at this point in the installation process. Alternatively, after the installation completes, you can unlock the schemas and reset their passwords by using the ALTER USER .. ACCOUNT UNLOCK
statement. For example:
See Also:
'Guidelines for Securing Passwords' in Oracle Database Security Guide for guidelines related to creating secure passwordsThe sample schemas available to you depend on the edition of Oracle Database that you have installed and its configuration. Refer to the following table:
Schema | Oracle Database Personal edition | Oracle Database Standard edition | Oracle Database Enterprise edition |
---|---|---|---|
HR | OK | OK | OK |
OE | OK | OK | OK |
PM | OK | OK | OK |
IX | OK | OK | OK |
SH | Not available | Not available | Needs Partitioning Option installed |
Manually Installing Sample Schemas
If you decide not to install the sample schemas at the time of your initial database installation using DBCA, then you can also create the sample schemas manually by running SQL scripts. Install Oracle Database Examples (Companion CD, part of the media kit) to include these scripts in the demo
directory under $ORACLE_HOME
.
See Also:
Oracle Database Examples Installation Guide for download and installation informationSchema Dependencies
Various dependencies have been established among the schemas. So, when you create the schemas manually, you must create them in the following order: HR
, OE
, PM
, IX
, and SH
.
Use this sequence to create the schemas:
Create schema
HR
.Create schema
OE
. SchemaHR
is already present, and you must know the password for schemaHR
to grantHR
object privileges toOE
. SomeHR
tables are visible to userOE
with the use of private synonyms. In addition, someOE
tables have foreign key relationships toHR
tables.Create schema
PM
: Foreign key relationships require that schemaOE
already exist when schemaPM
is created. You must know the password forOE,
to grant toPM
the right to establish and use these foreign keys.Note:
SchemaPM
requires that the database be enabled for the Java Virtual Machine (JVM) and interMedia. You can accomplish this during installation or later using the DBCA.Create schema
IX
: The information exchange schema,IX
, is based on order entry data in schemaOE
. Again, foreign key relationships require that schemaOE
already be present when schemaIX
is created. You must know the password forOE
to grant toIX
, the right to establish and use the foreign keys.Create schema
SH
. SchemaSH
logically depends on schemaOE
, but you can create schemaSH
without creating the other four schemas.
Guidelines for Installing Sample Schemas
All scripts necessary to install sample schemas reside in $ORACLE_HOME
/demo/schema
directory. Before you install sample schemas by running these scripts, follow these guidelines:
You must connect as a system administrator using the
SYSDBA
privilege.When prompted to enter a password for the schema, enter a secure password that meets the requirements described in Oracle Database Security Guide.
When prompted for tablespace names while running scripts:
Enter an appropriate tablespace name, for example,
users
as the default tablespace for a schemaEnter
temp
as the temporary tablespace for a schema
When prompted for the log directory name, enter
$ORACLE_HOME
/demo/schema/log/
or any other existing directory name.
Note:
Make sure that you end the log directory name with a trailing slash, for example,$ORACLE_HOME
/demo/schema/log/
Installing the HR Schema
All scripts necessary to create the Human Resource (HR
) schema reside in $ORACLE_HOME
/demo/schema/human_resources
.
You need to call only one script, hr_main.sql
, to create all the objects and load the data. The following steps provide a summary of the installation process:
Log on to SQL*Plus as
SYS
andconnect
using theAS SYSDBA
privilege.To run the
hr_main.sql
script, use the following command:Enter a secure password for
HR
See Also:
Oracle Database Security Guide for the minimum password requirementsEnter an appropriate tablespace, for example,
users
as the default tablespace forHR
Enter
temp
as the temporary tablespace forHR
Enter your
SYS
passwordEnter the directory path, for example,
$ORACLE_HOME
/demo/schema/log/
, for your log directory
After script hr_main.sql
runs successfully and schema HR
is installed, you are connected as user HR.
To verify that the schema was created, use the following command:
Running hr_main.sql
accomplishes the following tasks:
Removes any previously installed
HR
schemaCreates user
HR
and grants the necessary privilegesConnects as
HR
Calls the scripts that create and populate the schema objects
For a complete listing of the scripts and their functions, refer to Table 4-1.
A pair of optional scripts, hr_dn_c.sql
and hr_dn_d.sql
, is provided as a schema extension. To prepare schema HR
for use with the directory capabilities of Oracle Internet Directory, run the hr_dn_c.sql
script. If you want to return to the initial setup of schema HR
, use script hr_dn_d.sql
to undo the effects of script hr_dn_c.sql
.
You can use script hr_drop.sql
to drop schema HR
.
Installing Schema OE and Subschema OC
All scripts necessary to create the Order Entry (OE
) schema and its Online Catalog (OC
) subschema reside in $ORACLE_HOME
/demo/schema/order_entry
.
See Also:
Guidelines for Installing Sample Schemas before you runoe_main.sql
You need to call only one script, oe_main.sql
, to create all the objects and load the data. Running oe_main.sql
accomplishes the following tasks:
Removes any previously installed
OE
schemaCreates schema (user)
OE
and grants it the necessary privilegesConnects as
OE
Calls the scripts that create and populate the schema objects
After the oe_main.sql
script runs successfully and schema OE
is installed, you are connected as user OE
. To verify that the schema was created, use the following command:
For a complete listing of the scripts and their functions, refer to Table 4-10.
You can use scripts oe_drop.sql
and oc_drop.sql
to drop schema OE
and subschema OC
, respectively.
Installing the PM Schema
All scripts necessary to create the Product Media (PM
) schema reside in $ORACLE_HOME
/demo/schema/product_media
.
See Also:
Guidelines for Installing Sample Schemas before you runpm_main.sql
You need to call only one script, pm_main.sql
, to create all the objects and load the data. Running pm_main.sql
accomplishes the following tasks:
Prompts for passwords and tablespace names used within the scripts as well as datafile and log file directories
Removes any previously installed
PM
schemaCreates user
PM
and grants it the necessary privilegesConnects as
PM
Calls the scripts that create and populate the schema objects
After script pm_main.sql
runs successfully and schema PM
is installed, you are connected as user PM
. To verify that the schema was created, use the following command:
For a complete listing of the scripts and their functions, refer to Table 4-19 .
You can use script pm_drop.sql
to drop schema PM
.
Cost of solar panel in kerala. Deal with Top Solar Company in Kerala As one of the leading Solar Companies in Kerala VDS offers cost effective solar solutions that save a lot of money. We offer Complete Solar System Design, Installation and Product Supply. The proper design and installation make your Solar system efficient and cost effective while. Solar energy for homes cost in Kerala ultimately depend on the components used for solar system and Capacity of the System.We always design the solar power system for office and home in a way that the systems can expand in the future without throwing out any hardware. Hi, Thanks for sharing your query with us. We are US based company and deal in USA only as of now. To know more about us, please visit Solar & Renewable Energy Solar Panels Department of Green Energy. But, the following image may help you some. Business listings of Solar Panels, Solar Plate manufacturers, suppliers and exporters in Kochi, Kerala along with their contact details & address. Find here Solar Panels, Solar Plate suppliers, manufacturers, wholesalers, traders with Solar Panels prices for buying. Low cost solar panels in Kerala for subsidy Schemes. Solar smart scheme, the subsidy on off-grid inverter system will be Rs 40,500 per kWh. On on-grid system subsidy of Rs 18,000 / kW. This subsidy belongs to the Central Government. In addition Kerala state government is subsidy.
Note:
The SQL*Loader data filepm_p_lob.dat
contains hard-coded absolute path names that have been set during installation. Before attempting to load the data in a different environment, you should first edit the path names in this file.Installing the IX Schema
All scripts necessary to create the Information Exchange (IX) schema reside in $ORACLE_HOME
/demo/schema/info_exchange
.
See Also:
Guidelines for Installing Sample Schemas before you runix_main.sql
To install schema IX
, you need to call only one script, ix_main.sql
, which creates all the objects and loads the data.
Running ix_main.sql
accomplishes the following tasks:
Prompts for passwords and tablespace names used within the scripts
Removes any previously installed
IX
schemaCreates user
IX
and grants the necessary privilegesConnects as
IX
Calls the scripts that create and populate the schema objects
After the ix_main.sql
script runs successfully and schema IX
is installed, you are connected as user IX
. To verify that the schema was created, use the following command:
For a complete listing of the scripts and their functions, refer to Table 4-23.
You can use script dix_v3.sql
to drop schema IX
.
Installing the SH Schema
All scripts necessary to create the Sales History (SH
) schema reside in $ORACLE_HOME
/demo/schema/sales_history
.
See Also:
Guidelines for Installing Sample Schemas before you runsh_main.sql
You need to call only one script, sh_main.sql
, to create all the objects and load the data. Running sh_main.sql
accomplishes the following tasks:
Prompts for passwords and tablespace names used within the scripts as well as datafile and log file directories
Removes any previously installed
SH
schemaCreates user
SH
and grants the necessary privilegesConnects as
SH
Calls the scripts that create and populate the schema objects
After script sh_main.sql
runs successfully and schema SH
is installed, you are connected as user SH
. To verify that the schema was created, use the following command:
For a complete listing of the scripts and their functions, refer to Table 4-27.
Note:
The dimension tablesPROMOTIONS
, CUSTOMERS
, PRODUCTS
and the fact table SALES
are loaded by SQL*Loader, after which directory paths are created inside the database to point to the load and log file locations. This allows the loading of the COSTS
table by using the external table sales_transactions_ext
.A pair of optional scripts, sh_olp_c.sql
and sh_olp_d.sql
, is provided as a schema extension. To prepare schema SH
for use with the advanced analytical capabilities of OLAP Services, run the sh_olp_c.sql
create script. If you want to return to the initial setup of schema SH
, then use script sh_olp_d.sql
to undo the effects of sh_olp_c.sql
and reinstate dimensions as they were before.
You can use script sh_drop.sql
to drop schema SH
.
Resetting Sample Schemas
To reset sample schemas to their initial state, use the following syntax from the SQL*Plus command-line interface:
The mksample
script expects 11 parameters. Provide the password for SYSTEM
and SYS
, and for schemas HR
, OE
, PM
, IX
, and SH
. Specify a temporary and a default tablespace, and make sure to end the name of the log file directory with a trailing slash.
The mksample
script produces several log files:
mkverify.log
is the Sample Schema creation log file.hr_main.log
is theHR
schema creation log file.oe_oc_main.log
is theOE
schema creation log file.pm_main.log
is thePM
schema creation log file.pm_p_lob.log
is the SQL*Loader log file forPM.PRINT_MEDIA
.ix_main.log
is theIX
schema creation log file.sh_main.log
is theSH
schema creation log file.cust.log
is the SQL*Loader log file forSH.CUSTOMERS
.prod.log
is the SQL*Loader log file forSH.PRODUCTS
.promo.log
is the SQL*Loader log file forSH.PROMOTIONS
.sales.log
is the SQL*Loader log file forSH.SALES
.sales_ext.log
is the external table log file forSH.COSTS
.
In most situations, there is no difference between installing a Sample Schema for the first time or reinstalling it over a previously installed version. The *_main.sql
scripts drop the schema users and all of their objects.
In some cases, complex interobject relationships in schema OE
or IX
prevent DROP
USER
.. CASCADE
operations from completing normally. To correct these rare cases, use one of the following procedures:
For the OC
catalog subschema of schema OE
:
Connect as user
OE
.Run script
oc_drop.sql
.Connect as
SYSTEM
.Ensure that user
OE
is not connected:Drop user
OE
:
For the IX
schemas:
Connect as
SYSTEM
.Ensure that no user is connected as an
IX
user:Drop the schemas by running script
dix.sql
. You will be prompted for passwords for the individual users.
Uninstalling Sample Schemas
If you need to remove the sample schemas from the installation, run script drop_sch.sql
on the SQL*Plus command line. This script ships with Oracle Database.
Script drop_sch.sql
uses two parameters: systempwd
is the password for SYSTEM
user, and spool_file_name
is the name of the spool file that captures the log of the operation.
During a complete installation of your Oracle Database, the sample schemas can be installed automatically with the seed database. If the seed database is removed from the system, you will need to reinstall the sample schemas before you can perform the steps given in the examples that you find in Oracle documentation and training materials.
This chapter describes how to install Sample Schemas. It contains the following sections:
Caution:
By installing any of the Oracle Database Sample Schemas, you will destroy any previously installed schemas that use any of the following user names:HR
OE
PM
SH
IX
Data contained in any of these schemas will be lost if you run any of the installation scripts described in this section. You should not use Oracle Database Sample Schemas for your personal or business data and applications. They are meant to be used for demonstration purposes only.
Using the Database Configuration Assistant
When you install Oracle Database with the Oracle Universal Installer, the sample schemas are installed by default if you select the Basic Installation option. Selecting the sample schemas option installs all five schemas (HR, OE, PM, IX, and SH) in the database. If you choose not to install the sample schemas at that time, you can add them later by following the instructions in section 'Manually Installing Sample Schemas'.
At the end of the installation process, a dialog box displays the accounts that have been created and their lock status. By default, all sample schemas are locked and their passwords are expired. Before you can use a locked account, you must unlock it and reset its password. You can unlock the accounts at this point in the installation process. Alternatively, after the installation completes, you can unlock the schemas and reset their passwords by using the ALTER USER .. ACCOUNT UNLOCK
statement. For example:
See Also:
'Guidelines for Securing Passwords' in Oracle Database Security Guide for guidelines related to creating secure passwordsThe sample schemas available to you depend on the edition of Oracle Database that you have installed and its configuration. Refer to the following table:
Schema | Oracle Database Personal edition | Oracle Database Standard edition | Oracle Database Enterprise edition |
---|---|---|---|
HR | OK | OK | OK |
OE | OK | OK | OK |
PM | OK | OK | OK |
IX | OK | OK | OK |
SH | Not available | Not available | Needs Partitioning Option installed |
Manually Installing Sample Schemas
If you decide not to install the sample schemas at the time of your initial database installation using DBCA, then you can also create the sample schemas manually by running SQL scripts. Install Oracle Database Examples (Companion CD, part of the media kit) to include these scripts in the demo
directory under $ORACLE_HOME
.
See Also:
Oracle Database Examples Installation Guide for download and installation informationSchema Dependencies
Various dependencies have been established among the schemas. So, when you create the schemas manually, you must create them in the following order: HR
, OE
, PM
, IX
, and SH
.
Use this sequence to create the schemas:
Create the
HR
schema.Create the
OE
schema: TheHR
schema is already present, and you must know the password for theHR
schema to grantHR
object privileges toOE
. SomeHR
tables are visible to theOE
user with the use of private synonyms. In addition, someOE
tables have foreign key relationships toHR
tables.Create the
PM
schema: Foreign key relationships require that theOE
schema already exist when thePM
schema is created. You must know the password forOE,
to grant toPM
the right to establish and use these foreign keys.Note:
ThePM
schema requires the database to be enabled for the Java Virtual Machine (JVM) and interMedia. You can accomplish this during installation or later using the DBCA.Create the
IX
schema: The information exchange schemaIX
is based on order entry data inOE
. Again, foreign key relationships require that theOE
schema already be present when theIX
schema is created. You must know the password forOE
to grant toIX
, the right to establish and use the foreign keys.Create the
SH
schema. TheSH
schema logically depends on theOE
schema, though you can create this schema without creating the other four schemas.
Guidelines for Installing Sample Schemas
All scripts necessary to install sample schemas reside in $ORACLE_HOME
/demo/schema
directory. Before you install sample schemas by running these scripts, follow these guidelines:
You must connect as a system administrator using the
SYSDBA
privilege.When prompted to enter a password for the schema, enter a secure password that meets the requirements described in Oracle Database Security Guide.
When prompted for tablespace names while running scripts:
Enter an appropriate tablespace name, for example,
users
as the default tablespace for a schemaEnter
temp
as the temporary tablespace for a schema
When prompted for the log directory name, enter
$ORACLE_HOME
/demo/schema/log/
or any other existing directory name.
Note:
Make sure that you end the log directory name with a trailing slash, for example,$ORACLE_HOME
/demo/schema/log/
Installing the HR Schema
All scripts necessary to create the Human Resource (HR) schema reside in $ORACLE_HOME
/demo/schema/human_resources
.
You need to call only one script, hr_main.sql
, to create all the objects and load the data. The following steps provide a summary of the installation process:
Log on to SQL*Plus as
SYS
andconnect
using theAS SYSDBA
privilege.To run the
hr_main.sql
script, use the following command:Enter a secure password for HR
See Also:
Oracle Database Security Guide for the minimum password requirementsEnter an appropriate tablespace, for example,
users
as the default tablespace forHR
Enter
temp
as the temporary tablespace forHR
Enter your
SYS
passwordEnter the directory path, for example,
$ORACLE_HOME
/demo/schema/log/
, for your log directory
After the hr_main.sql
script runs successfully and the HR
schema is installed, you are connected as the user HR.
To verify that the schema was created, use the following command:
Running hr_main.sql
accomplishes the following tasks:
Removes any previously installed
HR
schemaCreates the user
HR
and grants the necessary privilegesConnects as
HR
Calls the scripts that create and populate the schema objects
For a complete listing of the scripts and their functions, refer to Table 5-1.
A pair of optional scripts, hr_dn_c.sql
and hr_dn_d.sql
, is provided as a schema extension. To prepare the HR schema for use with the directory capabilities of Oracle Internet Directory, run the hr_dn_c.sql
script. If you want to return to the initial setup of the HR
schema, then use the hr_dn_d.sql
script to undo the effects of the hr_dn_c.sql
script.
Use the hr_drop.sql
script to drop the HR
schema.
Installing the OE Schema and Its OC Subschema
All scripts necessary to create the Order Entry (OE
) schema and its Online Catalog (OC
) subschema reside in $ORACLE_HOME
/demo/schema/order_entry
.
See Also:
Guidelines for Installing Sample Schemas before you runoe_main.sql
You need to call only one script, oe_main.sql
, to create all the objects and load the data. Running oe_main.sql
accomplishes the following tasks:
Removes any previously installed
OE
schemaCreates the user
OE
and grants the necessary privilegesConnects as
OE
Calls the scripts that create and populate the schema objects
After the oe_main.sql
script runs successfully and the OE
schema is installed, you are connected as the user OE
. To verify that the schema was created, use the following command:
For a complete listing of the scripts and their functions, refer to Table 5-10.
The oe_drop.sql
and oc_drop.sql
scripts are used to drop the OE
schema and OC
subschema, respectively.
Installing the PM Schema
All scripts necessary to create the Product Media (PM
) schema reside in $ORACLE_HOME
/demo/schema/product_media
.
See Also:
Guidelines for Installing Sample Schemas before you runpm_main.sql
You need to call only one script, pm_main.sql
, to create all the objects and load the data. Running pm_main.sql
accomplishes the following tasks:
Prompts for passwords and tablespace names used within the scripts as well as datafile and log file directories
Removes any previously installed
PM
schemaCreates the user
PM
and grants the necessary privilegesConnects as
PM
Calls the scripts that create and populate the schema objects
After the pm_main.sql
script runs successfully and the PM
schema is installed, you are connected as the user PM
. To verify that the schema was created, use the following command:
For a complete listing of the scripts and their functions, refer to Table 5-19 .
The pm_drop.sql
script is used to drop the PM
schema.
Note:
The SQL*Loader data filepm_p_lob.dat
contains hard-coded absolute path names that have been set during installation. Before attempting to load the data in a different environment, you should first edit the path names in this file.Installing the IX Schema
All scripts necessary to create the Information Exchange (IX
) schema reside in $ORACLE_HOME
/demo/schema/info_exchange
.
See Also:
Guidelines for Installing Sample Schemas before you runix_main.sql
To install the Information Exchange (IX
) schema, you need to call only one script, ix_main.sql
, which creates all the objects and loads the data.
Running ix_main.sql
accomplishes the following tasks:
Prompts for passwords and tablespace names used within the scripts
Removes any previously installed
IX
schemaCreates the user
IX
and grants the necessary privilegesConnects as
IX
Calls the scripts that create and populate the schema objects
After the ix_main.sql
script runs successfully and the IX
schema is installed, you are connected as the user IX
. To verify that the schema was created, use the following command:
For a complete listing of the scripts and their functions, refer to Table 5-23.
The ix_drop.sql
script is used for dropping the IX
schema.
Installing the SH Schema
All scripts necessary to create the Sales History (SH
) schema reside in $ORACLE_HOME
/demo/schema/sales_history
.
See Also:
Guidelines for Installing Sample Schemas before you runsh_main.sql
You need to call only one script, sh_main.sql
, to create all the objects and load the data. Running sh_main.sql
accomplishes the following tasks:
Prompts for passwords and tablespace names used within the scripts as well as datafile and log file directories
Removes any previously installed
SH
schemaCreates the user
SH
and grants the necessary privilegesConnects as
SH
Calls the scripts that create and populate the schema objects
After the sh_main.sql
script runs successfully and the SH
schema is installed, you are connected as the user SH
. To verify that the schema was created, use the following command:
For a complete listing of the scripts and their functions, refer to Table 5-27.
Note:
The dimension tablesPROMOTIONS
, CUSTOMERS
, PRODUCTS
and the fact table SALES
are loaded by SQL*Loader, after which directory paths are created inside the database to point to the load and log file locations. This allows the loading of the COSTS
table by using the external table sales_transactions_ext
.A pair of optional scripts, sh_olp_c.sql
and sh_olp_d.sql
, is provided as a schema extension. To prepare the SH
schema for use with the advanced analytical capabilities of OLAP Services, run the sh_olp_c.sql
create script. If you want to return to the initial setup of the SH
schema, then use the script sh_olp_d.sql
to undo the effects of sh_olp_c.sql
and reinstate dimensions as they were before.
The file used to drop the SH
schema is sh_drop.sql
.
Resetting Sample Schemas
To reset sample schemas to their initial state, use the following syntax from the SQL*Plus command-line interface:
The mksample
script expects 11 parameters. Provide the password for SYSTEM
and SYS
, and for the HR
, OE
, PM
, IX
, SH
, and BI
schemas. Specify a temporary and a default tablespace, and make sure to end the name of the log file directory with a trailing slash.
The mksample
script produces several log files:
mkverify.log
is the Sample Schema creation log file.hr_main.log
is theHR
schema creation log file.oe_oc_main.log
is theOE
schema creation log file.pm_main.log
is thePM
schema creation log file.pm_p_lob.log
is the SQL*Loader log file forPM.PRINT_MEDIA
.ix_main.log
is theIX
schema creation log file.sh_main.log
is theSH
schema creation log file.cust.log
is the SQL*Loader log file forSH.CUSTOMERS
.prod.log
is the SQL*Loader log file forSH.PRODUCTS
.promo.log
is the SQL*Loader log file forSH.PROMOTIONS
.sales.log
is the SQL*Loader log file forSH.SALES
.sales_ext.log
is the external table log file forSH.COSTS
.
In most situations, there is no difference between installing a Sample Schema for the first time or reinstalling it over a previously installed version. The *_main.sql
scripts drop the schema users and all their objects.
In some cases, complex interobject relationships in the OE
or IX
schemas prevent the DROP
USER
.. CASCADE
operations from completing normally. To correct these rare cases, use one of the following procedures:
For the OC
catalog subschema of the OE
schema:
Connect as the user
OE
.Run the
oc_drop.sql
. script.Connect as
SYSTEM
.Ensure that no user is connected as
OE
:Drop the user:
For the IX
schemas:
Connect as
SYSTEM
.Ensure that no user is connected as an
IX
user:Drop the schemas by running the
dix.sql
. script. You will be prompted for passwords for the individual users.
Uninstalling Sample Schemas
When you need to remove the Sample Schemas from the installation, you can run the drop_sch.sql
on the SQL*Plus command line. Note that this script ships with Oracle Database.
The drop_sch.sql
script uses two parameters: systempwd
is the password for SYSTEM
user, and spool_file_name
is the name of the spool file that captures the log of the operation.