Google News
logo
SQL Server - Quiz(MCQ)
Which of the following is not a SQL Server INFORMATION_SCHEMA view?
A)
sys.dm_exec_connections
B)
INFORMATION_SCHEMA.KEY_COLUMN_USAGE
C)
INFORMATION_SCHEMA.DOMAIN_CONSTRAINTS
D)
INFORMATION_SCHEMA.CONSTRAINT_TABLE_USAGE

Correct Answer :   sys.dm_exec_connections


Explanation : The INFORMATION_SCHEMA views allow you to retrieve metadata about the objects within a database. These views can be found in the master database under Views / System Views and be called from any database in your SQL Server instance.

Advertisement