Deck 4: Creating SQL Server 2012 Databases

Full screen (f)
exit full mode
Question
What should you define if you want to grant several users the same permissions to database objects?

A)schema
B)user
C)role
D)access list
Use Space or
up arrow
down arrow
to flip the card.
Question
Which of the following is true about the physical file structure of a SQL Server database?

A)it must have at least one log and one data file
B)only a data file is required
C)there are two data files for every log file
D)log files organize data in tables and indexes
Question
Which of the following is true about filegroups?

A)filegroups are only used when there is more than one data file
B)there can be only one data file per filegroup
C)each database must have a primary filegroup
D)multiple data files should be of different sizes for best performance
Question
Many tasks can be performed with SQL Server Management Studio, but to delete a database, you need to use a SQL statement in the SQLCMD command prompt.
Question
Which attribute include binary and numeric as categories?

A)column
B)data type
C)row
D)record labels
Question
What should you always do before creating a new database?

A)backup the master system database
B)install a fresh instance of SQL Server 2012
C)delete all existing temporary databases
D)stop and restart the SQL Server service
Question
Since it is easy to make configuration changes after a database is created, it's best to get the database created and make changes as necessary afterward.
Question
The widest reaching type of permission in a SQL Server is database permissions.
Question
Which of the following is true about database creation and configuration?

A)an overly complex database is more secure
B)other administrators should be able to understand and manage it
C)configuration changes should be made frequently
D)client applications automatically adjust to logical object model changes
Question
Which of the following is a logical container that groups together collections of objects within a database and allows them to be managed as a group?

A)filegroup
B)data file
C)transaction
D)schema
Question
Which of the following is true about log files?

A)they aid in database roll back
B)log files are optional for each database
C)there can be only one log file per database
D)they should be stored on the same physical disk as data files
Question
Which of the following is best described as a logical unit of work reading or writing from a database?

A)I/O performance
B)database transaction
C)log file record
D)individual filegroup
Question
Which of the following is true about the model database template?

A)it cannot be customized
B)changes to it will affect existing databases
C)new databases will inherit settings from it
D)modifying model database settings requires different steps than user databases
Question
Which of the following is true about the Autogrowth setting?

A)by default, it doubles the size of the log file when it becomes full
B)the data file is affected by it but log files are not
C)you should keep this value as small as possible
D)you should configure it so that file growth occurs infrequently
Question
Which of the following is a required setting that must be supplied when creating a database?

A)the SQL Server name
B)a unique database name
C)the master database configuration
D)the user credentials
Question
The NEW table SQL language statement is used to make a new table.
Question
Which of the following is true about the size of data and log files?

A)you should not change the default sizes
B)increasing the size on an existing database will degrade performance
C)you should not set the size larger than the data requires
D)best practice is to change the Maxsize setting from its default value
Question
What permission must be granted for a user to run procedures within a database?

A)Execute
B)Read
C)List
D)Server-level
Question
Which of the following is true about database permissions?

A)access to databases is controlled by Windows logon authentication
B)database users are defined for each database
C)server-level permissions provide the least access to SQL databases
D)permissions can only be set at the server or database level
Question
The two main physical file types in an SQL Server database are data files and log files.
Question
___________ performance is a term used to describe the number of read and write operations that can be processed by the physical disk in a given time frame.
Question
How is the Autogrowth setting used on data files and log files and what is a best practice for this setting?
Question
What are the two main approaches to creating a new user database?
Question
If you want to set the maximum number of digits a numeric data type can hold, what should you set?

A)precision
B)length
C)scale
D)size
Question
How are log files used for database reliability?
Question
Describe how to create a database using the SQL programming language and explain why it might be the preferred method.
Question
Describe how SQL Server 2012 supports authentication for connecting to the database server.
Question
The _____________ size setting defines the size of the database when it is first created.
Question
What happens if you need to compare two values of different data types?

A)the system is halted
B)the value with the highest precision is returned
C)an 'incompatible type' error occurs
D)a data type conversion is performed
Question
Describe how the Initial Size setting is used when defining a database. How can this setting affect database performance?
Question
Describe how filegroups are used in a database.
Question
If you want to set the number of places after the decimal point in a numeric data type, what should you set?

A)precision
B)length
C)scale
D)size
Question
Why should log files be stored on a different physical disk from data files?
Question
The ______________ statement is used to change an existing database object.
Question
Before creating a new database, make a full backup of the _____________ system database.
Question
Tables and ____________ are the main building blocks of a database.
Question
Which of the following SQL statements deletes an object?

A)ALTER
B)REMOVE
C)DROP
D)DEL
Question
Which of the following is true about naming objects?

A)the database management system provides strict rules
B)Camel case does not use special characters to link words
C)tables should always be named with a character prefix
D)A column name of Last Name is preferable to LastName
Question
How is the model system database used in database creation?
Question
What are roles and how are they used in database security and permissions? Provide an example of a predefine server role.
Question
Match between columns
a database object that groups together permissions on different database objects
precision
a database object that groups together permissions on different database objects
Autogrowth
a database object that groups together permissions on different database objects
permission
a database object that groups together permissions on different database objects
scale
a database object that groups together permissions on different database objects
reserved keyword
a database object that groups together permissions on different database objects
filegroup
a database object that groups together permissions on different database objects
role
a database object that groups together permissions on different database objects
schema
a database object that groups together permissions on different database objects
contention
a database object that groups together permissions on different database objects
foreign key relationship
a constraint that models the relationship that exists between two tables
precision
a constraint that models the relationship that exists between two tables
Autogrowth
a constraint that models the relationship that exists between two tables
permission
a constraint that models the relationship that exists between two tables
scale
a constraint that models the relationship that exists between two tables
reserved keyword
a constraint that models the relationship that exists between two tables
filegroup
a constraint that models the relationship that exists between two tables
role
a constraint that models the relationship that exists between two tables
schema
a constraint that models the relationship that exists between two tables
contention
a constraint that models the relationship that exists between two tables
foreign key relationship
a word that belongs to the SQL programming language
precision
a word that belongs to the SQL programming language
Autogrowth
a word that belongs to the SQL programming language
permission
a word that belongs to the SQL programming language
scale
a word that belongs to the SQL programming language
reserved keyword
a word that belongs to the SQL programming language
filegroup
a word that belongs to the SQL programming language
role
a word that belongs to the SQL programming language
schema
a word that belongs to the SQL programming language
contention
a word that belongs to the SQL programming language
foreign key relationship
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
precision
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
Autogrowth
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
permission
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
scale
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
reserved keyword
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
filegroup
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
role
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
schema
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
contention
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
foreign key relationship
a group of data files used for storage management
precision
a group of data files used for storage management
Autogrowth
a group of data files used for storage management
permission
a group of data files used for storage management
scale
a group of data files used for storage management
reserved keyword
a group of data files used for storage management
filegroup
a group of data files used for storage management
role
a group of data files used for storage management
schema
a group of data files used for storage management
contention
a group of data files used for storage management
foreign key relationship
a setting that specifies how much the database will increase the file size once it reaches a limit
precision
a setting that specifies how much the database will increase the file size once it reaches a limit
Autogrowth
a setting that specifies how much the database will increase the file size once it reaches a limit
permission
a setting that specifies how much the database will increase the file size once it reaches a limit
scale
a setting that specifies how much the database will increase the file size once it reaches a limit
reserved keyword
a setting that specifies how much the database will increase the file size once it reaches a limit
filegroup
a setting that specifies how much the database will increase the file size once it reaches a limit
role
a setting that specifies how much the database will increase the file size once it reaches a limit
schema
a setting that specifies how much the database will increase the file size once it reaches a limit
contention
a setting that specifies how much the database will increase the file size once it reaches a limit
foreign key relationship
a logical container that groups together collections of objects within a database and allows them to be managed as a group
precision
a logical container that groups together collections of objects within a database and allows them to be managed as a group
Autogrowth
a logical container that groups together collections of objects within a database and allows them to be managed as a group
permission
a logical container that groups together collections of objects within a database and allows them to be managed as a group
scale
a logical container that groups together collections of objects within a database and allows them to be managed as a group
reserved keyword
a logical container that groups together collections of objects within a database and allows them to be managed as a group
filegroup
a logical container that groups together collections of objects within a database and allows them to be managed as a group
role
a logical container that groups together collections of objects within a database and allows them to be managed as a group
schema
a logical container that groups together collections of objects within a database and allows them to be managed as a group
contention
a logical container that groups together collections of objects within a database and allows them to be managed as a group
foreign key relationship
a right to perform an action against a database object
precision
a right to perform an action against a database object
Autogrowth
a right to perform an action against a database object
permission
a right to perform an action against a database object
scale
a right to perform an action against a database object
reserved keyword
a right to perform an action against a database object
filegroup
a right to perform an action against a database object
role
a right to perform an action against a database object
schema
a right to perform an action against a database object
contention
a right to perform an action against a database object
foreign key relationship
the maximum number of digits that a numeric data type can hold
precision
the maximum number of digits that a numeric data type can hold
Autogrowth
the maximum number of digits that a numeric data type can hold
permission
the maximum number of digits that a numeric data type can hold
scale
the maximum number of digits that a numeric data type can hold
reserved keyword
the maximum number of digits that a numeric data type can hold
filegroup
the maximum number of digits that a numeric data type can hold
role
the maximum number of digits that a numeric data type can hold
schema
the maximum number of digits that a numeric data type can hold
contention
the maximum number of digits that a numeric data type can hold
foreign key relationship
a term used to describe a situation in which two processes compete for the same resource
precision
a term used to describe a situation in which two processes compete for the same resource
Autogrowth
a term used to describe a situation in which two processes compete for the same resource
permission
a term used to describe a situation in which two processes compete for the same resource
scale
a term used to describe a situation in which two processes compete for the same resource
reserved keyword
a term used to describe a situation in which two processes compete for the same resource
filegroup
a term used to describe a situation in which two processes compete for the same resource
role
a term used to describe a situation in which two processes compete for the same resource
schema
a term used to describe a situation in which two processes compete for the same resource
contention
a term used to describe a situation in which two processes compete for the same resource
foreign key relationship
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/41
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 4: Creating SQL Server 2012 Databases
1
What should you define if you want to grant several users the same permissions to database objects?

A)schema
B)user
C)role
D)access list
C
2
Which of the following is true about the physical file structure of a SQL Server database?

A)it must have at least one log and one data file
B)only a data file is required
C)there are two data files for every log file
D)log files organize data in tables and indexes
A
3
Which of the following is true about filegroups?

A)filegroups are only used when there is more than one data file
B)there can be only one data file per filegroup
C)each database must have a primary filegroup
D)multiple data files should be of different sizes for best performance
C
4
Many tasks can be performed with SQL Server Management Studio, but to delete a database, you need to use a SQL statement in the SQLCMD command prompt.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
5
Which attribute include binary and numeric as categories?

A)column
B)data type
C)row
D)record labels
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
6
What should you always do before creating a new database?

A)backup the master system database
B)install a fresh instance of SQL Server 2012
C)delete all existing temporary databases
D)stop and restart the SQL Server service
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
7
Since it is easy to make configuration changes after a database is created, it's best to get the database created and make changes as necessary afterward.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
8
The widest reaching type of permission in a SQL Server is database permissions.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
9
Which of the following is true about database creation and configuration?

A)an overly complex database is more secure
B)other administrators should be able to understand and manage it
C)configuration changes should be made frequently
D)client applications automatically adjust to logical object model changes
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
10
Which of the following is a logical container that groups together collections of objects within a database and allows them to be managed as a group?

A)filegroup
B)data file
C)transaction
D)schema
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
11
Which of the following is true about log files?

A)they aid in database roll back
B)log files are optional for each database
C)there can be only one log file per database
D)they should be stored on the same physical disk as data files
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
12
Which of the following is best described as a logical unit of work reading or writing from a database?

A)I/O performance
B)database transaction
C)log file record
D)individual filegroup
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
13
Which of the following is true about the model database template?

A)it cannot be customized
B)changes to it will affect existing databases
C)new databases will inherit settings from it
D)modifying model database settings requires different steps than user databases
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
14
Which of the following is true about the Autogrowth setting?

A)by default, it doubles the size of the log file when it becomes full
B)the data file is affected by it but log files are not
C)you should keep this value as small as possible
D)you should configure it so that file growth occurs infrequently
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
15
Which of the following is a required setting that must be supplied when creating a database?

A)the SQL Server name
B)a unique database name
C)the master database configuration
D)the user credentials
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
16
The NEW table SQL language statement is used to make a new table.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
17
Which of the following is true about the size of data and log files?

A)you should not change the default sizes
B)increasing the size on an existing database will degrade performance
C)you should not set the size larger than the data requires
D)best practice is to change the Maxsize setting from its default value
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
18
What permission must be granted for a user to run procedures within a database?

A)Execute
B)Read
C)List
D)Server-level
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
19
Which of the following is true about database permissions?

A)access to databases is controlled by Windows logon authentication
B)database users are defined for each database
C)server-level permissions provide the least access to SQL databases
D)permissions can only be set at the server or database level
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
20
The two main physical file types in an SQL Server database are data files and log files.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
21
___________ performance is a term used to describe the number of read and write operations that can be processed by the physical disk in a given time frame.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
22
How is the Autogrowth setting used on data files and log files and what is a best practice for this setting?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
23
What are the two main approaches to creating a new user database?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
24
If you want to set the maximum number of digits a numeric data type can hold, what should you set?

A)precision
B)length
C)scale
D)size
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
25
How are log files used for database reliability?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
26
Describe how to create a database using the SQL programming language and explain why it might be the preferred method.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
27
Describe how SQL Server 2012 supports authentication for connecting to the database server.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
28
The _____________ size setting defines the size of the database when it is first created.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
29
What happens if you need to compare two values of different data types?

A)the system is halted
B)the value with the highest precision is returned
C)an 'incompatible type' error occurs
D)a data type conversion is performed
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
30
Describe how the Initial Size setting is used when defining a database. How can this setting affect database performance?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
31
Describe how filegroups are used in a database.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
32
If you want to set the number of places after the decimal point in a numeric data type, what should you set?

A)precision
B)length
C)scale
D)size
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
33
Why should log files be stored on a different physical disk from data files?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
34
The ______________ statement is used to change an existing database object.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
35
Before creating a new database, make a full backup of the _____________ system database.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
36
Tables and ____________ are the main building blocks of a database.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
37
Which of the following SQL statements deletes an object?

A)ALTER
B)REMOVE
C)DROP
D)DEL
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
38
Which of the following is true about naming objects?

A)the database management system provides strict rules
B)Camel case does not use special characters to link words
C)tables should always be named with a character prefix
D)A column name of Last Name is preferable to LastName
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
39
How is the model system database used in database creation?
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
40
What are roles and how are they used in database security and permissions? Provide an example of a predefine server role.
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
41
Match between columns
a database object that groups together permissions on different database objects
precision
a database object that groups together permissions on different database objects
Autogrowth
a database object that groups together permissions on different database objects
permission
a database object that groups together permissions on different database objects
scale
a database object that groups together permissions on different database objects
reserved keyword
a database object that groups together permissions on different database objects
filegroup
a database object that groups together permissions on different database objects
role
a database object that groups together permissions on different database objects
schema
a database object that groups together permissions on different database objects
contention
a database object that groups together permissions on different database objects
foreign key relationship
a constraint that models the relationship that exists between two tables
precision
a constraint that models the relationship that exists between two tables
Autogrowth
a constraint that models the relationship that exists between two tables
permission
a constraint that models the relationship that exists between two tables
scale
a constraint that models the relationship that exists between two tables
reserved keyword
a constraint that models the relationship that exists between two tables
filegroup
a constraint that models the relationship that exists between two tables
role
a constraint that models the relationship that exists between two tables
schema
a constraint that models the relationship that exists between two tables
contention
a constraint that models the relationship that exists between two tables
foreign key relationship
a word that belongs to the SQL programming language
precision
a word that belongs to the SQL programming language
Autogrowth
a word that belongs to the SQL programming language
permission
a word that belongs to the SQL programming language
scale
a word that belongs to the SQL programming language
reserved keyword
a word that belongs to the SQL programming language
filegroup
a word that belongs to the SQL programming language
role
a word that belongs to the SQL programming language
schema
a word that belongs to the SQL programming language
contention
a word that belongs to the SQL programming language
foreign key relationship
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
precision
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
Autogrowth
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
permission
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
scale
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
reserved keyword
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
filegroup
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
role
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
schema
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
contention
the number of places after the decimal point in a numeric data type or the accuracy in the case of a date data type
foreign key relationship
a group of data files used for storage management
precision
a group of data files used for storage management
Autogrowth
a group of data files used for storage management
permission
a group of data files used for storage management
scale
a group of data files used for storage management
reserved keyword
a group of data files used for storage management
filegroup
a group of data files used for storage management
role
a group of data files used for storage management
schema
a group of data files used for storage management
contention
a group of data files used for storage management
foreign key relationship
a setting that specifies how much the database will increase the file size once it reaches a limit
precision
a setting that specifies how much the database will increase the file size once it reaches a limit
Autogrowth
a setting that specifies how much the database will increase the file size once it reaches a limit
permission
a setting that specifies how much the database will increase the file size once it reaches a limit
scale
a setting that specifies how much the database will increase the file size once it reaches a limit
reserved keyword
a setting that specifies how much the database will increase the file size once it reaches a limit
filegroup
a setting that specifies how much the database will increase the file size once it reaches a limit
role
a setting that specifies how much the database will increase the file size once it reaches a limit
schema
a setting that specifies how much the database will increase the file size once it reaches a limit
contention
a setting that specifies how much the database will increase the file size once it reaches a limit
foreign key relationship
a logical container that groups together collections of objects within a database and allows them to be managed as a group
precision
a logical container that groups together collections of objects within a database and allows them to be managed as a group
Autogrowth
a logical container that groups together collections of objects within a database and allows them to be managed as a group
permission
a logical container that groups together collections of objects within a database and allows them to be managed as a group
scale
a logical container that groups together collections of objects within a database and allows them to be managed as a group
reserved keyword
a logical container that groups together collections of objects within a database and allows them to be managed as a group
filegroup
a logical container that groups together collections of objects within a database and allows them to be managed as a group
role
a logical container that groups together collections of objects within a database and allows them to be managed as a group
schema
a logical container that groups together collections of objects within a database and allows them to be managed as a group
contention
a logical container that groups together collections of objects within a database and allows them to be managed as a group
foreign key relationship
a right to perform an action against a database object
precision
a right to perform an action against a database object
Autogrowth
a right to perform an action against a database object
permission
a right to perform an action against a database object
scale
a right to perform an action against a database object
reserved keyword
a right to perform an action against a database object
filegroup
a right to perform an action against a database object
role
a right to perform an action against a database object
schema
a right to perform an action against a database object
contention
a right to perform an action against a database object
foreign key relationship
the maximum number of digits that a numeric data type can hold
precision
the maximum number of digits that a numeric data type can hold
Autogrowth
the maximum number of digits that a numeric data type can hold
permission
the maximum number of digits that a numeric data type can hold
scale
the maximum number of digits that a numeric data type can hold
reserved keyword
the maximum number of digits that a numeric data type can hold
filegroup
the maximum number of digits that a numeric data type can hold
role
the maximum number of digits that a numeric data type can hold
schema
the maximum number of digits that a numeric data type can hold
contention
the maximum number of digits that a numeric data type can hold
foreign key relationship
a term used to describe a situation in which two processes compete for the same resource
precision
a term used to describe a situation in which two processes compete for the same resource
Autogrowth
a term used to describe a situation in which two processes compete for the same resource
permission
a term used to describe a situation in which two processes compete for the same resource
scale
a term used to describe a situation in which two processes compete for the same resource
reserved keyword
a term used to describe a situation in which two processes compete for the same resource
filegroup
a term used to describe a situation in which two processes compete for the same resource
role
a term used to describe a situation in which two processes compete for the same resource
schema
a term used to describe a situation in which two processes compete for the same resource
contention
a term used to describe a situation in which two processes compete for the same resource
foreign key relationship
Unlock Deck
Unlock for access to all 41 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 41 flashcards in this deck.