Collections:
sys.sql_modules - Getting View Definitions Back in SQL Server
How To Get the Definition of a View Out of the SQL Server in SQL Server?
✍: FYIcenter.com
If you want get the definition of an existing view back from the SQL Server, you can use the system view called sys.sql_modules, which stores definitions of views and procedures.
The sys.sql_modules holds view definitions identifiable by the object id of each view. The tutorial exercise below shows you how to retrieve the definition of view, "fyi_link_view" by joining sys.sql_modules and sys.views:
USE FyiCenterData;
GO
SELECT m.definition
FROM sys.sql_modules m, sys.views v
WHERE m.object_id = v.object_id
AND v.name = 'fyi_links_top';
GO
definition
-------------------------------------------
CREATE VIEW fyi_links_top (LinkText) AS
SELECT CONVERT(VARCHAR(20),id)
+ ' - ' + CONVERT(VARCHAR(20),counts)
+ ' - ' + url
FROM fyi_links WHERE counts > 1000
(1 row(s) affected)
⇒ Creating a View with Data from Multiple Tables in SQL Server
⇐ Generating CREATE VIEW Scripts on Existing Views in SQL Server
2016-11-05, 5833🔥, 0💬
Popular Posts:
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...
How To Assign Debug Privileges to a User in Oracle? In order to run SQL Developer in debug mode, the...