|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - "sp_help" - Getting a List of Columns in a View
By: FYIcenter.com
(Continued from previous topic...)
How To Get a List of Columns in a View using the "sp_help" Stored Procedure?
Another way to get a list of columns from a view is to use the "sp_help"
stored procedure. "sp_help" returns more than just a list of columns. It returns:
the view information, the column information, the identity column, the row GUID column.
The tutorial exercise belwo shows you what you will get with sp_help:
EXEC SP_HELP fyi_links_top;
GO
Name Owner Type Created_datetime
-------------- ------ ----- -----------------------
fyi_links_top dbo view 2007-05-19 13:43:46.983
Column_name Type Computed Length Prec Scale Nullable
------------ -------- --------- ------- ----- ----- --------
id int no 4 10 0 yes
counts int no 4 10 0 yes
url varchar no 80 no
Identity
---------------------------
No identity column defined.
RowGuidCol
-----------------------------
No rowguidcol column defined.
(Continued on next topic...)
- What Are Views?
- How To Create a View on an Existing Table?
- How To See Existing Views?
- How To Drop Existing Views from a Database?
- How To Get a List of Columns in a View using "sys.columns"?
- How To Get a List of Columns in a View using the "sp_columns" Stored Procedure?
- How To Get a List of Columns in a View using the "sp_help" Stored Procedure?
- How To Generate CREATE VIEW Script on an Existing View?
- How To Get the Definition of a View Out of the SQL Server?
- Can You Create a View with Data from Multiple Tables?
- Can You Create a View using Data from Another View?
- What Happens If You Delete a Table That Is Used by a View?
- Can You Use ORDER BY When Defining a View?
- How To Modify the Underlying Query of an Existing View?
- Can You Insert Data into a View?
- Can You Update Data in a View?
- Can You Delete Data from a View?
- How To Assign New Column Names in a View?
- How Column Data Types Are Determined in a View?
- How To Bind a View to the Schema of the Underlying Tables?
- How To Create an Index on a View?
|