The SQL Server Database Editor is used to create new databases, define the files used to store an existing database or create a database snapshot, and define database properties in a SQL Server 2005 physical model.
To define a database in SQL Server 2005
The SQL Server Database Editor opens.
Note: Click New on the toolbar to create a new database. Use the Enter filter text box to filter a very large list of databases to quickly locate the one that you want to define.
Specifies the name of the database. Change the name of the database in this field.
Specifies the database type. Select the database type from the drop-down list.
Specifies database compatibility to determine how the database behaves with an earlier version of Microsoft SQL Server.
Specifies the default collation for the database. Enter the collation value in the column. If collation is not specified, the default collation of SQL Server is assigned.
Note: A collation name cannot be specified if the FOR ATTACH or FOR ATTACH_REBUILD clauses are specified.
Generates SQL during forward engineering. Clear the check box if you do not want to generate SQL.
Specifies the default value of a column, alias datatype, or CLR user-defined type for which nullability is not explicitly defined. Columns that are defined with constraints follow those constraints regardless of this setting. A TRUE value specifies that the default is NULL and FALSE is NOT NULL.
Specifies how comparisons to a NULL value are handled. A TRUE value specifies UNKNOWN comparison and a FALSE value specifies TRUE comparison.
Specifies whether strings are padded to the same length before a conversion or insertion to a varchar or nvarchar data type.
Specifies whether errors or warnings are issued when conditions such as divide-by-zero occur or NULL values appear in aggregate functions. A TRUE value specifies that an error or warning will be issued. A FALSE value specifies that no warnings are issued.
Specifies whether a query ends when an overflow or divide-by-zero error occurs. A TRUE value specifies that the query ends. A FALSE value specifies that a warning message is issued and querying continues.
Specifies if SQL Server returns a NULL value when a concatenation operation begins and one of the values is NULL, or if it treats it as an empty string. A TRUE value specifies that the concatenation operation return NULL. A FALSE value specifies that the concatenation operation treat the NULL as an empty string and return the parameter that was not NULL.
Specifies whether an error is generated when a loss of precision occurs in an expression.
Specifies whether double quotation marks can be used to enclose delimited characters. A TRUE value specifies that double quotation marks are permitted. A FALSE value specifies that double quotation marks are not permitted.
Note: SQL Server also allows for identifiers to be delimited by square brackets regardless of the value of this property.
Specifies whether the recursive firing of AFTER triggers is allowed.
Specifies whether to enable the database for vardecimal storage format. A TRUE value specifies that vardecimal storage format is permitted, which allows you to specify that a table in the database be enabled for vardecimal storage. This means that a table can store decimal and numeric columns using a variable-length storage format. A FALSE value specifies that vardecimal storage format is not permitted.
Specifies the source database for the database snapshot.
Note: This option is only available if the selected database you are working with is designated as a Snapshot in the Database Type column of the Navigation Grid.
Specifies the database state.
Specifies whether the database can participate in a cross-database ownership chain.
Specifies the value for the trustworthy property to determine whether views, user-defined functions, or stored procedures are allowed to access the database if they use an impersonation context.
Specifies whether database transactions can specify the SNAPSHOT transaction isolation level. A TRUE value specifies that transactions can specify the SNAPSHOT transaction isolation level. A FALSE value specifies that transactions cannot specify the SNAPSHOT transaction isolation level.
Specifies whether database transactions that specify the READ COMMITTED isolation level use row versioning instead of locking. A TRUE value specifies that the READ COMMITTED isolation level use row versioning. A FALSE value specifies that the READ COMMITTED isolation level use locking.
The database is defined and the SQL Server Database Editor closes.
Copyright © 2012 CA. All rights reserved. | Tell Technical Publications how we can improve this information |