Podcast
Questions and Answers
What are the default ports to secure a SQL server?
What are the default ports to secure a SQL server?
- 41 and 42
- 80 and 82
- 1433 and 1434 (correct)
- 8080 and 8090
Which two methods can be used to grant temporary permissions to users when you cannot create new groups?
Which two methods can be used to grant temporary permissions to users when you cannot create new groups?
- Add the users to an existing role that has appropriate access (correct)
- Grant each user explicit permissions to the role (correct)
- Create a view with shared permissions
- Remove existing role permissions temporarily
What action can a user perform on data that is on the server if granted unlimited access?
What action can a user perform on data that is on the server if granted unlimited access?
- No
- Read-only
- Delete only
- Unlimited (correct)
To allow a user to read data in a table, which command should be used?
To allow a user to read data in a table, which command should be used?
What does the term 'truncate' refer to in a database context?
What does the term 'truncate' refer to in a database context?
What is the purpose of using a unique index in a database?
What is the purpose of using a unique index in a database?
In a relational database, what is the requirement for a foreign key in a table?
In a relational database, what is the requirement for a foreign key in a table?
Which command is used to remove a table from a database?
Which command is used to remove a table from a database?
What should be applied to the Employee table to ensure an employee can only be assigned to an existing department?
What should be applied to the Employee table to ensure an employee can only be assigned to an existing department?
What type of data should be recommended for storing financial amounts in a database?
What type of data should be recommended for storing financial amounts in a database?
Which command is used to create a query returning a set of table data by using the UPDAT statement?
Which command is used to create a query returning a set of table data by using the UPDAT statement?
What type of constraint ensures that data entered into a column is valid?
What type of constraint ensures that data entered into a column is valid?
Which command would you use to add a column to an existing table?
Which command would you use to add a column to an existing table?
Which SQL statement is used to retrieve rows from a table?
Which SQL statement is used to retrieve rows from a table?
How is a non-clustered index defined on a table?
How is a non-clustered index defined on a table?
What is one limitation of a delete statement in SQL?
What is one limitation of a delete statement in SQL?
What is the recommended method to store volunteer data with given name, surname, telephone number, and email address?
What is the recommended method to store volunteer data with given name, surname, telephone number, and email address?
Which database object should you add to the Sales table to ensure valid associated salesperson records?
Which database object should you add to the Sales table to ensure valid associated salesperson records?
Which DDL keyword is used to delete a database table?
Which DDL keyword is used to delete a database table?
Which statement is true regarding the ALTER statement?
Which statement is true regarding the ALTER statement?
First normal form requires a database to exclude which of the following?
First normal form requires a database to exclude which of the following?
Which statement about clustered and non-clustered indexes is true?
Which statement about clustered and non-clustered indexes is true?
What is the purpose of a foreign key in a database?
What is the purpose of a foreign key in a database?
What is the relationship of StateID in the state table?
What is the relationship of StateID in the state table?
Which statement about SQL Server logins is incorrect?
Which statement about SQL Server logins is incorrect?
What is the purpose of the SELECT statement in SQL?
What is the purpose of the SELECT statement in SQL?
Which SQL clause is used to specify criteria for selecting records?
Which SQL clause is used to specify criteria for selecting records?
Which constraint ensures that each value in the ID column is unique?
Which constraint ensures that each value in the ID column is unique?
If you want to retrieve rows from a table, which DML command should you use?
If you want to retrieve rows from a table, which DML command should you use?
What data type is recommended for storing financial transactions?
What data type is recommended for storing financial transactions?
To improve query performance on a column, which item should you consider adding?
To improve query performance on a column, which item should you consider adding?
What type of constraint would you use to establish a relationship between two tables?
What type of constraint would you use to establish a relationship between two tables?
Which data type should be used to store project names that range from three to 30 characters while minimizing storage space?
Which data type should be used to store project names that range from three to 30 characters while minimizing storage space?
What is required to define a column in a SQL table?
What is required to define a column in a SQL table?
What should you specify for a column that cannot contain duplicate values in a SQL table?
What should you specify for a column that cannot contain duplicate values in a SQL table?
What SQL keywords are valid to use in a CREATE TABLE statement?
What SQL keywords are valid to use in a CREATE TABLE statement?
Which SQL statement correctly creates a view that returns a list of games sorted alphabetically?
Which SQL statement correctly creates a view that returns a list of games sorted alphabetically?
When creating an integer-type column that must be assigned a value between 1 and 10, what should you include?
When creating an integer-type column that must be assigned a value between 1 and 10, what should you include?
Using a relational database minimizes redundant data and allows data retrieval:
Using a relational database minimizes redundant data and allows data retrieval:
If you want to ensure a column in a SQL table cannot be empty, what constraint should you specify?
If you want to ensure a column in a SQL table cannot be empty, what constraint should you specify?
What is the characteristic of a non-clustered index?
What is the characteristic of a non-clustered index?
Which statement correctly describes a unique index?
Which statement correctly describes a unique index?
Which of the following statements about clustered indexes is true?
Which of the following statements about clustered indexes is true?
Which SQL statement correctly updates a table named loanedBooks?
Which SQL statement correctly updates a table named loanedBooks?
What is the appropriate SQL statement to create a table named Student with specified attributes?
What is the appropriate SQL statement to create a table named Student with specified attributes?
What is true about filtered indexes?
What is true about filtered indexes?
Which SQL statement can be used to create an index on a column?
Which SQL statement can be used to create an index on a column?
Which statement describes the relationship between clustered and non-clustered indexes?
Which statement describes the relationship between clustered and non-clustered indexes?
Flashcards
What are the default ports to secure a SQL server?
What are the default ports to secure a SQL server?
Secure the SQL server using ports 1433 and 1434. These ports are commonly used to connect to the SQL Server engine.
How to grant a collection of users permissions to tables temporarily, without creating new groups?
How to grant a collection of users permissions to tables temporarily, without creating new groups?
Two ways to grant user permissions: 1. Adding users to an existing role: Assign users to a role already having the required permissions. 2. Granting individual permissions: Provide specific access rights to each user directly.
What is a foreign key in a relational database?
What is a foreign key in a relational database?
A foreign key is a field in a table that references the primary key of another table. It ensures data integrity by enforcing relationships between tables.
How to ensure an employee can be assigned to only an existing department?
How to ensure an employee can be assigned to only an existing department?
Signup and view all the flashcards
What is the TRUNCATE command used for?
What is the TRUNCATE command used for?
Signup and view all the flashcards
How to grant read permission to a table?
How to grant read permission to a table?
Signup and view all the flashcards
Which command is used to retrieve data from a table?
Which command is used to retrieve data from a table?
Signup and view all the flashcards
How to modify existing data in a table?
How to modify existing data in a table?
Signup and view all the flashcards
What is a unique index?
What is a unique index?
Signup and view all the flashcards
What is a non-clustered index?
What is a non-clustered index?
Signup and view all the flashcards
How to improve query performance?
How to improve query performance?
Signup and view all the flashcards
How to remove a table from a database?
How to remove a table from a database?
Signup and view all the flashcards
What is a constraint in a relational database?
What is a constraint in a relational database?
Signup and view all the flashcards
What is the best data type for financial transactions?
What is the best data type for financial transactions?
Signup and view all the flashcards
How to add a column to an existing table?
How to add a column to an existing table?
Signup and view all the flashcards
What is a row in a table?
What is a row in a table?
Signup and view all the flashcards
Foreign Key (FK)
Foreign Key (FK)
Signup and view all the flashcards
Primary Key (PK)
Primary Key (PK)
Signup and view all the flashcards
DROP
DROP
Signup and view all the flashcards
Non-clustered Index
Non-clustered Index
Signup and view all the flashcards
Clustered Index
Clustered Index
Signup and view all the flashcards
First Normal Form (1NF)
First Normal Form (1NF)
Signup and view all the flashcards
Foreign Key
Foreign Key
Signup and view all the flashcards
Primary Key
Primary Key
Signup and view all the flashcards
Is a SQL Server Login using Windows Authentication possible?
Is a SQL Server Login using Windows Authentication possible?
Signup and view all the flashcards
What does a SQL Server Role provide permissions for?
What does a SQL Server Role provide permissions for?
Signup and view all the flashcards
Which SQL clause defines filtering conditions?
Which SQL clause defines filtering conditions?
Signup and view all the flashcards
What constraint ensures uniqueness within a table?
What constraint ensures uniqueness within a table?
Signup and view all the flashcards
Which DML command retrieves data?
Which DML command retrieves data?
Signup and view all the flashcards
Which data type is best for monetary values?
Which data type is best for monetary values?
Signup and view all the flashcards
What can be added to a column to enhance query performance?
What can be added to a column to enhance query performance?
Signup and view all the flashcards
What constraint links tables together?
What constraint links tables together?
Signup and view all the flashcards
What is a clustered index?
What is a clustered index?
Signup and view all the flashcards
How do you update data in a table?
How do you update data in a table?
Signup and view all the flashcards
How do you create a new table?
How do you create a new table?
Signup and view all the flashcards
How do you create an index?
How do you create an index?
Signup and view all the flashcards
VARCHAR
VARCHAR
Signup and view all the flashcards
CHAR
CHAR
Signup and view all the flashcards
View
View
Signup and view all the flashcards
UNIQUE Constraint
UNIQUE Constraint
Signup and view all the flashcards
DEFAULT Constraint
DEFAULT Constraint
Signup and view all the flashcards
CHECK Constraint
CHECK Constraint
Signup and view all the flashcards
Relational Database
Relational Database
Signup and view all the flashcards
Study Notes
MTA Exam Questions Review
-
SQL Server Default Ports: The default ports for securing a SQL server are 1433 and 1434.
-
Temporary User Permissions (2 methods): Two ways to grant temporary permissions to users on multiple tables without creating new groups are granting explicit permissions to the role, and adding users to an existing role with appropriate access.
-
User Actions on Server Data: Users can perform actions on database objects on the server. The extent of these actions can vary.
-
Granting Read Access: The
ALLOW SELECT
command grants select permission to read data in a table. If it makes the statement correct to read data, stateNo change is needed
. If the statement is incorrect, correct the statement by sayingGrant select
. OrPermit read
. -
Database Operations (Truncate): Truncate is a database operation used to clear/correct data if a database is damaged or corrupt. (NOT for backups). Other terms that could pertain, and should be used if appropriate, are
Attach
andCommit
(orRestoring
). -
Foreign Key Constraints: In relational databases, foreign keys in a table must be unique in that table and cannot refer to the primary key of another table. Foreign keys cannot contain null values.
-
Employee Table Assignment: To ensure that employees can only be assigned to existing departments, a foreign key should be added to the Employee table linking the Employee table with department table.
-
SQL Query for Table Data: The statement
UPDATE
is not used to retrieve data, butSELECT
is.
Database Table Structure and Data Types
-
SQL Database Table Keywords: To delete a table use
DROP
. -
Data Types and Normal Form: First normal form requires elimination of repeating groups and duplicate rows in table data.
-
SQL Database Table Relationships: A primary key is a constraint ensuring each row in the Table is unique and is related to other tables. A foreign key in one table can point to a primary key in another table.
Database Objects and Constraints
-
Removing Tables: The command to remove a table is
DROP TABLE
. -
Data Integrity: Using Constraints, especially Foreign Keys, keeps the reference data consistent across related tables, preventing orphaned rows and inconsistencies.
-
Data Types: Use
INT
for numerical data in a table column. UseVARCHAR
for string data, but specify the maximum length. -
Indexes: Indexes improve query performance by speeding up data retrieval. A clustered index sorts data physically on disk. A non-clustered index doesn't. Indexes are often added to commonly queried fields.
Data Validation and Relationships
-
Data Types For Financial Transactions: Recommendations for financial transactions in a database table are
MONEY
andDECIMAL
to support precise calculations and avoid rounding errors. -
Unique Values & Data Integrity (Constraints): A primary key ensures a unique value for each row in a table, guaranteeing distinct identification for all records.
-
Relationships and Data Consistency: Use foreign keys to ensure data consistency by enforcing connections between related tables, preventing invalid or orphaned data.
-
Adding Columns: The correct command to add a column to an existing table is
ALTER TABLE
. -
Data Consistency: A database with constraints guarantees a consistent set of data in related tables, improving data integrity.
Query and Data Manipulation
-
Query Performance Optimization: Use indexes on columns frequently searched.
-
Data Modification Statements:
UPDATE
for changing data in a tableDELETE
to eliminate rows.INSERT
to add new rows.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.