Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 What is the SQL Server equivalent to DESCRIBE

Author  Topic 

jej1216
Starting Member

27 Posts

Posted - 2005-11-03 : 15:50:12
In ORACLE, I can use DESCRIBE PS_JOB to see the columns for that record. What is the SQL-Server equivalent?

TIA,

Joe

X002548
Not Just a Number

15586 Posts

Posted - 2005-11-03 : 15:51:28
sp_help PS_JOB

SELECT * FROM INFORMATION_SCHEMA.Columns WHERE TABLE_NAME = 'PS_JOB'



Brett

8-)

Hint: Want your questions answered fast? Follow the direction in this link
http://weblogs.sqlteam.com/brettk/archive/2005/05/25/5276.aspx
Go to Top of Page

anuj164
Starting Member

49 Posts

Posted - 2005-11-03 : 15:53:16
you can also use the hot keys i.e hightlight the table and presee ALT + F1.

Good Luck
Go to Top of Page

madhivanan
Premature Yak Congratulator

22864 Posts

Posted - 2005-11-04 : 04:39:27
quote:
Originally posted by anuj164

you can also use the hot keys i.e hightlight the table and presee ALT + F1.

Good Luck


Nice trick

Madhivanan

Failing to plan is Planning to fail
Go to Top of Page

cshah1
Constraint Violating Yak Guru

347 Posts

Posted - 2005-11-04 : 09:25:00
can anyone list all SQL server hot keys?
Go to Top of Page

cshah1
Constraint Violating Yak Guru

347 Posts

Posted - 2005-11-04 : 10:09:19
found it..in QA..Tools-->Customize
Go to Top of Page
   

- Advertisement -