15 September 2010

SQL SERVER List All Tables of Database

SQL SERVER List All Tables of Database

USE YourDBName
GO
SELECT *
FROM sys.Tables
GO

No comments:

Post a Comment

Comments Welcome

Implementing OAuth validation in a Web API

 I mplementing OAuth validation in a Web API Implementing OAuth validation in a Web API using C# typically involves several key steps to sec...