Oracle learning Data Warehouse (I) Import Oracle 11g Global samples schema
Oracle 11g provides an example schema for the Data Warehouse. You can download the sample installation file through the following link. The http://www.oracle.com/technology/products/bi/olap/doc_sample_schemas/global_11g_schema.zip uploads the downloaded file to the Oracle server and decompress it.
[oracle@localhost ~]$ mkdir global_11g_schema [oracle@localhost ~]$ unzip -d global_11g_schema global_11g_schema.zip Archive: global_11g_schema.zip inflating: global_11g_schema/global_11g_remove.sql inflating: global_11g_schema/global_11g_source.dmp inflating: global_11g_schema/Templates/CHANNEL.XML inflating: global_11g_schema/Templates/CUSTOMER.XML inflating: global_11g_schema/Templates/GLOBAL.XML inflating: global_11g_schema/Templates/GLOBAL_MV.XML inflating: global_11g_schema/Templates/PRICE_CUBE.XML inflating: global_11g_schema/Templates/PRODUCT.XML inflating: global_11g_schema/Templates/TIME.XML inflating: global_11g_schema/Templates/UNITS_CUBE.XML inflating: global_11g_schema/global_11g_install.sql inflating: global_11g_schema/global_11g_readme.html
Run global_11g_install. SQL with sqlplus
[oracle@localhost ~]$ lsglobal_11g_install.sql global_11g_readme.html global_11g_remove.sql global_11g_source.dmp Templates[oracle@localhost global_11g_schema]$ sqlplus /nolog @global_11g_install.sql SQL*Plus: Release 11.2.0.4.0 Production on Thu Sep 10 09:44:17 2015Copyright (c) 1982, 2013, Oracle. All rights reserved.Enter the password for the user GLOBAL: Enter the password for the user SYSTEM: Connected.User created.Grant succeeded.Connected.Import: Release 11.2.0.4.0 - Production on Thu Sep 10 09:44:26 2015Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit ProductionWith the Partitioning, OLAP, Data Mining and Real Application Testing optionsExport file created by EXPORT:V11.01.00 via conventional pathimport done in AL32UTF8 character set and AL16UTF16 NCHAR character setimport server uses WE8MSWIN1252 character set (possible charset conversion)export client uses WE8MSWIN1252 character set (possible charset conversion). importing GLOBAL's objects into GLOBAL. . importing table "ACCOUNT" 24 rows imported. . importing table "CHANNEL_DIM" 3 rows imported. . importing table "CUSTOMER_DIM" 61 rows imported. . importing table "PRICE_FACT" 2523 rows imported. . importing table "PRODUCT_CHILD_PARENT" 48 rows imported. . importing table "PRODUCT_DIM" 36 rows imported. . importing table "TIME_DIM" 120 rows imported. . importing table "UNITS_FACT" 299446 rows importedAbout to enable constraints...Import terminated successfully without warnings.SQL>
The script creates a global user and sets a password for global as prompted. Enter the database system user password to log on to the database to create a global user.