Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 SQL Manual » DDL Statements » CREATE DATABASE |
CREATE DATABASE <Name> PATH <Path>|IN MEMORY [ENCRYPTED CATALOG|UNENCRYPTED CATALOG] [DESCRIPTION <Description>] [ATTRIBUTES <CustomAttributes>] <Path> = Any valid operating system path
-- The following statement creates a Support database using a -- path name without a drive letter. CREATE DATABASE "Support" PATH '\support\data' DESCRIPTION 'Support Database' -- The following statement creates an Accounting database using a -- path name with a drive letter. CREATE DATABASE "Accounting" PATH 'g:\acctng\data' DESCRIPTION 'Accounting Database' -- The following statement creates an Accounting database using a -- relative path name. The database will be located in the 'data' -- subdirectory under the defined configuration path. CREATE DATABASE "Accounting" PATH 'data' DESCRIPTION 'Accounting Database' -- The following statement creates an Accounting database using a -- relative path name. The database will be located in the same -- directory as the defined configuration path CREATE DATABASE "Accounting" PATH '.' DESCRIPTION 'Accounting Database' -- The following statement creates a Tracks database in memory CREATE DATABASE "Tracks" IN MEMORY DESCRIPTION 'Song Tracks Database'
Deviation | Details |
Extension | This SQL statement is an ElevateDB extension. |
This web page was last updated on Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |