C-sharpAsk
This site contains all the question regarding c#sharp and dot-net
Sunday, January 9, 2011
Get table information of Sql server database.
Sql Query:
select * FROM sysobjects
it will show the details of all system table and users table
if you want information of specific table,then you can specify table name in where clause.
ex.
select
*
FROM
sysobjects
where
name=
'table_name_here'
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment