I want to describe a table in SQL Server 2008 like what we can do with the DESC command in Oracle.
DESC
I have table [EX].[dbo].[EMP_MAST] which
[EX].[dbo].[EMP_MAST]
You can use sp_columns, a stored procedure for describing the table.
exec sp_columns TableName
You can also use sp_help.