How To Get the Definition of a View Out of the SQL Server?
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 defitions 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.
Related Questions
- If people don view the femininity definition as inferior, why does all this happen?
- Why doesn SQL Server permit an ORDER BY clause in the definition of a view?
- Can the ReportViewer view reports hosted on a SQL Server 2000 Report Server?
- Why doesn SQL Server permit an ORDER BY clause in the definition of a view?
- Can the ReportViewer view reports hosted on a SQL Server 2000 Report Server?
- How To Get the Definition of a View Out of the SQL Server?