This article describes how to create an empty IBM DB2 ECO database. In general, we usually need an empty database, which is mainly used as a container for storing EcoSpace. Delphi 2005 provides a CD, including the IBM DB2 UDB Developer Edition.
You can use Control Center to find it in IBM DB2 General Administrator Tool ).
An empty database is usually used as a container for storing EcoSpace. Delphi 2005 provides a CD, including the IBM DB2 UDB Developer Edition. You can use Control Center (which can be found in IBM DB2 General Administrator Tool ). In the Control Center, you can use a tree view to view systems, DB2 instances, and databases. Use the Wizard to create a new database, which provides you with a seven-step wizard where you only need to specify the name of the new empty database (some are similar to ECO2ASP ).
The SQL DDL used to create a database is as follows:
- CREATE DATABASE ECO2 ON C:
- USING CODESET IBM-1252 TERRITORY US COLLATE USING SYSTEM;
After creating an empty IBM DB2 UDB ECO2 database, you need to switch to Data Explorer and add a new DB2 Connection to the ECO2 database. Make sure that the correct database name (ECO2) is specified, and a valid user name and password are specified to connect to the database correctly.
The above content is an introduction to the tips for creating an empty IBM DB2 ECO Database. I hope you will have some gains.