|
| |
| |
|
|
|
Da Notes -
70-028 - I
Personal notes on the MCDBA tests. These notes are from the various resources I used to pass the MCDBA exams including the MCDBA sample exams from Transcender. |
Passing Score: 680, Questions: 52, Time: 90 Minutes
|
Da Notes Index
|
|
|
Information Schema Views
|
These views provide an internal, system table-independent view of the SQL Server metadata.
Information schema views allow applications to work properly even
though significant changes have been made to the system tables.
SELECT * FROM information_schema.table - List of tables in the database
SELECT * FROM information_schema.colums - List of columns in the database
SELECT * FROM information_schema.table_privileges - Security information in database
|
|
|
|
|