Apr 5, 2001 #1 hoctro Technical User Mar 29, 2001 34 US Hi Does anyone have a sample script for creating database ?? thanks
Apr 6, 2001 1 #2 Tim1 Programmer Mar 27, 2001 242 GB Hiya, Creating a database is fairly simple. The syntax is CREATE DATABASE (database name) You can add options, such as "WITH LOG ON" and name the segment where you want your transaction log help. For more information, use an Internet search engine and look for "SQL CREATE DATABASE" and you should find some useful pages. Tim Upvote 0 Downvote
Hiya, Creating a database is fairly simple. The syntax is CREATE DATABASE (database name) You can add options, such as "WITH LOG ON" and name the segment where you want your transaction log help. For more information, use an Internet search engine and look for "SQL CREATE DATABASE" and you should find some useful pages. Tim
Apr 23, 2001 #3 qyllr MIS Mar 8, 2001 131 US hi, this might help: create database database_name [on {default | database_device} [= size] [, database_device [= size]...] [log on database_device [ = size ] [, database_device [= size]]...] [with override] [for load] qyllr Upvote 0 Downvote
hi, this might help: create database database_name [on {default | database_device} [= size] [, database_device [= size]...] [log on database_device [ = size ] [, database_device [= size]]...] [with override] [for load] qyllr