posted 9/30/2011 5:39:45 PM by Did You Know Did You Know - Views: [874]
Did you know that INFORMATION SCHEMA VIEWS are one of many ways in which you can view SQL Server metadata.
INFORMATION SCHEMA VIEWS are included in SQL Server to comply with ISO & ANSI standards. All views are under INFORMATION_SCHEMA schema. For example, if you want to see all the tables in your database, you run the following script:
select * from INFORMATION_SCHEMA.TABLES
Other ways of browsing meta data are catalog views, compatibility views, etc.
RegardsDid-You-Know from SQLServerGeeks.com
Did You Know Did You Know (Member since: 7/22/2011 4:47:27 PM)
View Did You Know Did You Know 's profile
This is one of the best articles so far I have read online. No crap, just useful information. Very well presented. Its really helpful for beginner as well as developer check out this link too its also helped me to complete my task.Link
Thanks!!
Leave a comment