how to know description of a table in sqlserver 2000
Answers were Sorted based on User's Feedback
Answer / ksantosha
Dear Srinivas,
desc using in oracle not in Sql Server.
sp_help <table_name> is correct answer for Sql server
Is This Answer Correct ? | 11 Yes | 0 No |
Answer / ritesh
sp_ help table name
is the correct answer , above two answer is correct
Is This Answer Correct ? | 6 Yes | 0 No |
Answer / rajeev
by pressing alt+f1 we also get the description of the table
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sharif
Yes The Ksanthosha Given the Right Answer!
SP_HELP TABLE_NAME
This will gives the descriptin about the given TABLE_NAME
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / hameed
To get the description of the table execute this query in
the query editor
sp_help table_name
Is This Answer Correct ? | 1 Yes | 0 No |
How many types of schemas are there?
Explain DBCC?
What do you understand by recursive stored procedures?
What is scrollable cursor?
plz tell me the new features of sqlserver2000,sqlserver2002,sqlserver2005
How do I connect to sql server database?
How secure is sql server database?
What xml support does the sql server extend?
What is the difference between views and stored procedures? Can we have input parameters for views?
What is CTE in SQL
what happens on checkpoint? : Sql server database administration
What is difference between delete & truncate commands?