INFO5052-Midterm Flashcards
What is SQL Server?
The database engine
What program is used to query and maintain databases using SQL Server?
SQL Server Management Studio (SSMS)
What two files does SSMS create by default when you create a new database?
- Data File
- Log file
What is saved in the data file?
The schema and data for a given database
What is saved in a log file?
Transaction data required to run database. Database cannot be brought online without a log file.
Which type of file can be split across multiple files?
Data file
What is collation?
Defines how characters are interpreted
What is the recovery model?
Affects how long transactions are held in the transaction log
What is DDL?
Data Definition Language
What is DML?
Data Manipulation Language
What are two best practices with DDL?
- Always use semi-colons
- Use explicit schemas
What is NULL equal to?
Unknown
When working with complex joins, which type of join should be performed first? (INNER, OUTER)
Inner joins first
What does TRUNCATE do?
Removes all rows from a table without logging the individual row deletions.
Which is faster, TRUNCATE or DELETE?
TRUNCATE
Can a TRUNCATE be rolled back?
Yes
What are two “magic tables”?
- Inserted
- Deleted
Which four commands can make use of magic tables?
- INSERT
- UPDATE
- DELETE
- MERGE
What is an expression?
Anything that can be evaluated to return a single value
How do you return the magic tables?
OUTPUT inserted.ColumnName
OUTPUT deleted.ColumnName
What is a OLTP?
Online Transaction Processing Databases
What are the characteristics of an OLTP?
- Large number of users
- High volume of transactions
- Users have write access through an application
- Small amount of data
- Operational data
What is the purpose of normalization?
Data integrity
What is the preferred level of normalization?
3rd Normal
What is 1st Normal?
Unique columns with atomic data
What is 2nd Normal?
Data is dependent on entire key
What is a candidate key?
Any column or columns that can uniquely identify a row of data
What is 3rd Normal?
No column is transitively related to the candidate key
What is a logical data model?
Describes required data without describing structures. Includes entities, attributes and relationships
What is an entity?
A thing that we want to store data about. Typically a noun
What is an attribute?
Properties of an entity. A column
What is cardinality?
Describes the number of entities on either side of a relationship (one to many, etc)
What is a physical data model?
Describes the objects that store the data
What is an ERD?
Entity Relationship Diagram
What is a lookup table?
Used for a dropdown list when a finite number of options for an attribute exist
What is meant by “sparsely populated column”?
The attribute is NULL for an overwhelming number of records
What is the best practice when a column is sparsely populated?
Separate into a new table
What is a primary key?
A unique, non-nullable column or group of columns
What is a foreign key?
Constrains the values in a foreign table based on existing values in a primary table
What CRUD functions is the foreign table constrained on?
Inserts and Updates
What CRUD functions is the primary table constrained on?
Deletes and Updates
Which table is considered the “child” table?
Foreign table
What side of a one-to-many relationship is the primary table?
The “one” side
What is a unique constraint?
Each value, including NULL, can only appear once in the table
Can one unique constraint hold many columns?
Yes, it means the combination of columns must be unique
What is the format for naming unique constraints?
AK_TableName_ColumnName[…n]
What does a default constraint help avoid?
NULL values
What is the naming convention for default constraints?
DF_TableName_ColumnName
What is an IDENTITY?
Auto-incrementing, always unique
What is the naming convention for identity?
INT IDENTITY (1, 1)
(seed, increment)
What are two important details about identities?
- Cannot be inserted into, so INSERT statements should omit this column
- They are not reused
What is a check constraint?
Specifies a pattern, data must satisfy a condition
What is the naming convention of a check constraint?
CK_TableName
What is an index?
Lists of data sorted on a key
What is a scan?
When you evaluate each row of data in an unordered set
What is a seek?
Using an index to hone in on desired data
What is an execution plan?
Set of operations a database takes to execute a specific query
What is a clustered index?
Sorts and stores the entire row
What is typically the index key on a clustered index?
Primary Key
How many clustered indexes can a table have?
One or none
What is a heap?
A table without a clustered index
Which constraint is automatically indexed?
Unique
What is a covering index?
Contains all requested columns for a given query
What is a composite index?
An index with more than one index key
What is the naming convention for an index?
IX_TableName_ColumnName
How many non-clustered indexes can a table have?
0-999
How are execution plans read?
From right to left
What is the operator cost in an execution plan?
Combination of I/O cost and CPU cost
What is the I/O cost?
Estimate of the number of records that will be read with a given query
Why use indexes?
Makes those queries much faster
What are the costs of indexes?
Slows down insert, update and delete operations
Why do identities make good primary keys?
- Small
- Unique
- Simple
- Not reused
- Auto increment
What is a surrogate key?
Key created by the system that is meaningless outside of the context of the system
Why should foreign keys be indexed?
Foreign keys are often part of queries