how to know description of a table in sqlserver 2000

Answers were Sorted based on User's Feedback



how to know description of a table in sqlserver 2000 ..

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

how to know description of a table in sqlserver 2000 ..

Answer / kmbkrishnan

sp_help <table_name>

Is This Answer Correct ?    7 Yes 0 No

how to know description of a table in sqlserver 2000 ..

Answer / ritesh

sp_ help table name
is the correct answer , above two answer is correct

Is This Answer Correct ?    6 Yes 0 No

how to know description of a table in sqlserver 2000 ..

Answer / rajeev

by pressing alt+f1 we also get the description of the table

Is This Answer Correct ?    5 Yes 0 No

how to know description of a table in sqlserver 2000 ..

Answer / punithalakshmi

sp_help is the correct answer.

Is This Answer Correct ?    5 Yes 1 No

how to know description of a table in sqlserver 2000 ..

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

how to know description of a table in sqlserver 2000 ..

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 to know description of a table in sqlserver 2000 ..

Answer / srinivas

desc <table_name>

Is This Answer Correct ?    2 Yes 6 No

Post New Answer

More SQL Server Interview Questions

How many types of schemas are there?

0 Answers  


Explain DBCC?

0 Answers   QuestPond,


What do you understand by recursive stored procedures?

0 Answers  


What is scrollable cursor?

0 Answers  


plz tell me the new features of sqlserver2000,sqlserver2002,sqlserver2005

3 Answers  


How do I connect to sql server database?

0 Answers  


How secure is sql server database?

0 Answers  


What xml support does the sql server extend?

0 Answers  


What is the difference between views and stored procedures? Can we have input parameters for views?

6 Answers  


What is CTE in SQL

0 Answers   Infosys,


what happens on checkpoint? : Sql server database administration

0 Answers  


What is difference between delete & truncate commands?

0 Answers  


Categories