コンテンツエリア開始

Procedure documentation Demo Data for the SQL Tutorial Locate the document in its SAP Library structure

The demo data for the SQL Tutorial represents an extremely basic hotel administration system with information on the hotel’s visitors, location, vacancies, room prices, and so on.

This simple demo data is sufficient for you to work with all examples in this SQL tutorial.

Note

You can change the demo data to suit your needs. However, your results may then deviate from the example results given in this tutorial.

Prerequisites

...

       1.      Install the database software and tools.
To do so, proceed as described in Structure linkInstallation Manual.

       2.      Create the database instance DEMODB. You can use the Installation Manager or the Database Manager to do so.
Do NOT load the demo data.
Installation Manual, Structure linkCreating the Demo Database Instance DEMODB
Database Manager GUI, Structure linkCreating a Database Instance: Desktop PC/Laptop
Database Administration Tutorial, Creating and Configuring a Database Instance

Procedure

Creating the MONA Database User

You can use different tools to create database users (Loader, Database Manager, for example, Database Manager GUI or CLI, query tools, such as SQL Studio, SQLCLI). The following sections describe how to enter the SQL statements for creating the database user MONA with the Structure linkSQL Studio.

...

       1.      Log on to the demo database instance DEMODB as a database system administrator using the SQL Studio.
If you copied the default values when you created the demo database instance DEMODB, the database system administrator has the following user data:
user name: DBADMIN, password: SECRET

       2.      Create the database user MONA with the following SQL statement:
CREATE USER mona PASSWORD red DBA NOT EXCLUSIVE

       3.      Log off from the SQL Studio.

Creating the HOTEL Demo Schema

You can use various tools to create objects in the DEMODB demo database instance and populate them with demo data (Loader, Database Manager CLI and query tools such as SQL Studio, SQLCLI).

The following sections explain how to execute the SQL statements specified for the HOTEL schema for creating the database objects and their contents with the SQL Studio.

       4.      Using the SQL Studio, log on to the demo database instance DEMODB as user MONA with the password RED.

       5.      Create the HOTEL schema and the required tables and fill these with values.
Use the SQL statements as specified in SQL Statements for the HOTEL Demo Schema.

Result

Database user MONA has been created in the DEMODB demo database instance as a database administrator (DBA) with the password RED. The database administrator MONA can open several database sessions at once (NOT EXCLUSIVE).

The HOTEL demo schema has been created. A series of simply-structured tables have been assigned to the HOTEL schema. The tables are filled with demo data.

See also:

Explanation of the Tables in the HOTEL Demo Schema

Note

If you want to learn to administer database instances using the DEMODB or test SQL statements or Loader commands using existing data, you can load a more extensive set of demo data into the database instance DEMODB by executing specified scripts.

To load the complete demo data in this case, select the corresponding Load Tutorial option when creating a database instance in the Installation Manager and the Database Manager GUI.

See also:

Concepts of the Database System, Structure linkDemo Database, Structure linkObjects in the HOTEL Schema

 

コンテンツエリア終了