Question

answer the following so i can double check my answers. use sql knowledge Question 1 A...

answer the following so i can double check my answers. use sql knowledge

Question 1

  1. A table may have more than on clustered index.

    True

    False

10 points

Question 2

  1. All columns in a covering index must be from the same table.

    True

    False

10 points

Question 3

  1. Clustered indexes hold the data, not pointers to the data.

    True

    False

10 points

Question 4

  1. It is a good idea to index BLOB objects.

    True

    False

10 points

Question 5

  1. A nonclustered index does not store the table data itself.

    True

    False

10 points

Question 6

  1. It is a good idea to build an index on a column that is needed in a sorted order.

    True

    False

10 points

Question 7

  1. It is a good idea to build an index on the gender (male/female) of a person.

    True

    False

10 points

Question 8

  1. A nonclustered index stores pointers to the table data or clustered index as part of the index keys.

    True

    False

10 points

Question 9

  1. A nonclustered index is stored in the actual table structure.

    True

    False

10 points

Question 10

  1. It is not possible to create the nonclustered index on a different filegroup from the base table.

    True

    False

10 points

Question 11

  1. When a nonclustered index is created, the information used to build the index is placed in the same location as the table and therefore can't be stored on a different physical disk.

    True

    False

10 points

Question 12

  1. Unique indexes are commonly implemented to support constraints such as the primary key and clustered indexes.

    True

    False

10 points

Question 13

  1. If the selectivity of the data in the index columns is poor, the effectiveness of the index will be reduced.

    True

    False

10 points

Question 14

  1. The more columns there are in an index, the more data writing has to take place when a process completes an update or an insertion of data.

    True

    False

10 points

Question 15

  1. SQL Server keeps statistics on each column contained within an index if you have Auto Colulmn Statistics set to True.

    True

    False

0 0
Add a comment Improve this question Transcribed image text
Answer #1

1. False

Explanation: A clustered index tells about the order in which data is stored in table. Data can be stored only in one way,so there can be only one clustered index.Primary key constraints take care of that.

2. TRUE

EXPLANATION: yes, all columns must be from same table

3. TRUE

Explanation: the data in the table are stored on disk in the same order as the clustered index.

4. False:

Explanation: it is not advisable to index binary data.

5. TRUE:

Explanation: pointer to the data row is stored instead of data.

6. TRUE:

Explanation: indexing is done to sort the data

7. False

Explanation: Gender column can have only 3 values, it's bad practice to index that column.

8. true

Explanation: that is true about non-clustered index

9. false

Explanation: index is not stored in actual table structure.

10. True

Explanation: yes, we can move non-clustered index to other filegorup

11. False:

Explanation: no, we can't do that

12. True

Explanation: yes both primary and clustered index should be unique

13. true

Explanation: that is true statement

14. True

Explanation: yes , updation are insertion is prefred first

15. False

Explanation: no, that is not the true statement

Add a comment
Know the answer?
Add Answer to:
answer the following so i can double check my answers. use sql knowledge Question 1 A...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • using sql answer the following i need to double check my answers Question 1 Controls the...

    using sql answer the following i need to double check my answers Question 1 Controls the flow of execution based on a condition begin...end try...catch goto if...else 10 points Question 2 Changes the database context to the specified database. set alter exec use 10 points Question 3 Exits the innermost WHILE loop. goto quit return break 10 points Question 4 Controls the flow of execution when an error occurs declare on error goto try...catch continue...error 10 points Question 5 Declares...

  • Answer the following and explain so I can double check my answers If you use the Management Studio to create a database, the Studio will automatically create a database file plus a ________________...

    Answer the following and explain so I can double check my answers If you use the Management Studio to create a database, the Studio will automatically create a database file plus a ______________________ file. 10 points    QUESTION 2 When you use the Management Studio to create a check constraint, you can specify whether you want the constraint enforced for insert or __________________ operations. 10 points    QUESTION 3 When you use the Management Studio to create a database, including its tables...

  • Answer the following questions so I can double check my work Controls the flow of execution...

    Answer the following questions so I can double check my work Controls the flow of execution based on a condition begin...end try...catch goto if...else 10 points    QUESTION 2 Changes the database context to the specified database. set alter exec use 10 points    QUESTION 3 Exits the innermost WHILE loop. goto quit return break 10 points    QUESTION 4 Controls the flow of execution when an error occurs declare on error goto try...catch continue...error 10 points    QUESTION 5...

  • Question 9 (1 point) Which choice below describes the function of the following SQL statement? SELECT...

    Question 9 (1 point) Which choice below describes the function of the following SQL statement? SELECT ID, Last Name, First Name, Address FROM Members WHERE Last Name Last Name a simple query a parameterized query a compound query a wildcard query Question 10 (1 point) The correct SQL syntax to sort a table by Last Name in order of A-Z is SORT BY Last Name ASCENDING ORDER BY Last Name Down ORDER BY Last Name ASC ORDER BY Last Name...

  • I can't attach the data due to the file being real large i can email it...

    I can't attach the data due to the file being real large i can email it to you so i can have your help on it # Assignment 1 # R Programming Language # ---- Why do Exploratory Data Analysis (EDA)? ---- # We will be looking at ## identifying outliers ## null values ## generating plots ## examining correlations # -------------------------------------------------------------- # In this video we will cover: ## univariate plots for continuous variables (boxlots, historgrams) ## bivariate plots...

  • Are my answers correct? Question 1 (Mandatory) (1 point) Saved Modern software systems are blurring the...

    Are my answers correct? Question 1 (Mandatory) (1 point) Saved Modern software systems are blurring the distinction between local files and web pages, which may be stored on a remote computer, so the amount of data that we might wish to search is virtually unlimited. Remarkably, the methods that we shall study can support search and insert operations on symbol tables containing trillions of items or more using only four or five references to small blocks of data. 1) True...

  • Answer the following SQL study guide questions... Question 1 (1 point) Unless you assign a column...

    Answer the following SQL study guide questions... Question 1 (1 point) Unless you assign a column name in the base table. the column name in the result set is the same as the 1) unique syntax 2) column alias 3) qualification 4) all of the above Question 2 (1 point) Which clause specifies the number of rows that should be skipped before rows are returned from the result set? 1) FETCH 2) OFFSET 3) FIRST 4) NEXT Question 3 (1...

  • QUESTION 8 Which layer of the TCP/IP hierarchy presents incoming messages to the computer user? a....

    QUESTION 8 Which layer of the TCP/IP hierarchy presents incoming messages to the computer user? a. Network b. Link c. Transport d. Application 2.5 points    QUESTION 9 A relational database is a collection of one or more tables that are related by key values. True False 2.5 points    QUESTION 10 Which standards organization produced the OSI reference model for internet communication? a. IEEE b. ISO c. ANSI 2.5 points    QUESTION 11 Which of the following is used...

  • check my answers for Networking I came up with these answers, can check my answers Question...

    check my answers for Networking I came up with these answers, can check my answers Question 1: General What data rate is needed to transmit an uncompressed 4" x 6" photograph every second with a resolution of 1200 dots per inch and 24 bits per dot (pixel)? 691,200 kb/s 28.8 kb/s 8.29 Mb/s 829 Mb/s Question 2: Layering "Layering" is commonly used in computer networks because (check all that apply): -It forces all network software to be written in ‘C’....

  • QUESTION 1 Which of the following is not included when obtaining cultural knowledge? Health-related beliefs and...

    QUESTION 1 Which of the following is not included when obtaining cultural knowledge? Health-related beliefs and cultural values Disease incidence and prevalence Self-assessment of cultural background Treatment efficacy 1 points    QUESTION 2 True or false? When a translator is unavailable, it is fine to use the patient's family members or friends as translators. True False 1 points    QUESTION 3 Cultural competence is the intersection of which of the following constructs (Select all of them)? Cultural awareness cultural desire...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT