Collections:
sys.views - List of Existing Views in SQL Server
How To See Existing Views in SQL Server?
✍: FYIcenter.com
If you want to know how many views you have created in a database, you use the system view called sys.views to get a list of views defined in the current database. The tutorial exercise shows you how many views in database FyiCenterData:
USE FyiCenterData; GO CREATE VIEW fyi_links_view AS SELECT * FROM fyi_links; GO SELECT * FROM sys.views; GO name object_id schema_id type type_desc --------------- ----------- ---------- ---- ---------- fyi_links_view 1189579276 1 V VIEW fyi_links_top 1205579333 1 V VIEW (2 row(s) affected)
⇒ DROP VIEW - Deleting Existing Views in SQL Server
⇐ CREATE VIEW - Creating a View on an Existing Table in SQL Server
2016-11-05, 3176🔥, 0💬
Popular Posts:
How To Download Oracle Database 10g XE in Oracle? If you want to download a copy of Oracle Database ...
How To Generate CREATE VIEW Script on an Existing View in SQL Server? If you want to know how an exi...
How To Convert Numeric Expression Data Types using the CAST() Function in SQL Server Transact-SQL? I...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...