• Home
  • SQL Server / T-SQL
  • Aggregate Functions
  • Analytical Functions
  • Constraints
  • Cursor
  • Data Set
  • Data Type
  • Database
  • Date Timezone
  • Index
  • Insert Delete Update
  • Math Functions
  • Select Query
  • Sequence
  • Store Procedure Function
  • String Functions
  • Subquery
  • System
  • Table
  • Table Joins
  • Transact SQL
  • Transaction
  • Trigger
  • View
  • XML

Database Option « Database « SQL Server / T-SQL






  1. SQL Server / T-SQL
  2. Database
  3. Database Option
1.autoclose: 'True' ensures that the resources are cleared when the last user logs off
2.read only: 'True' ensures no modifications to the data can be made. Only data reads are allowed
3.dbo use: 'True' means that only the user ID that created the database has access and can use the database. Any other ID will be refused
4.autoshrink: 'True' indicates this database can be shrunk in size safely
5.ANSI null default - 'True' ensures SQL Server follows the SQL 92 rules to see if a column can allow NULL values
6.quoted identifier - 'True' ensure only single quotes are allowed when using this database
7.single: 'True' ensures only one user has access to the database at a time. Any subsequent users will be refused

java2s.com  | © Demo Source and Support. All rights reserved.