home *** CD-ROM | disk | FTP | other *** search
- # Template @(#)db_create.dbt 1.7 12 Feb 1996
- # Copyright 1995 Westmount Technology
- #
-
- #
- # Template for creating a database
- #
- create database ~$databaseName
- on default = 18
- log on log1 = 6;
-
- #
- # Remove committed transactions from the transaction log on CHECKPOINT's
- #
- sp_dboption ~$databaseName, trunc, true;
-
-