To verify that your DB2® server installation was successful, you will create a sample database and run SQL commands to retrieve sample data and to verify that the data has been distributed to all participating database partition servers.
You have completed all of the installation steps.
To create the SAMPLE database:
This command can take a few minutes to process. When the command prompt returns, the process is complete.
The SAMPLE database is automatically cataloged with the database alias SAMPLE when it is created.
db2 connect to sample db2 "select * from staff where dept = 20"
db2 "select distinct dbpartitionnum(empno) from employee"The output will list the database partitions used by the employee table. The specific output will depend on the number of database partitions in the database and the number of database partitions in the database partition group that is used by the table space where the employee table was created.
After you have verified the installation, you can remove the SAMPLE database to free up disk space. However, it is useful to keep the sample database, if you plan to make use of the sample applications.
Enter the db2 drop database sample command to drop the SAMPLE database.
[ Top of Page | Previous Page | Next Page | Contents ]