Friday, June 15, 2012

Find TableName from Database

USE [XXX]  --DB Name
GO
SELECT * FROM sys.Tables
WHERE name LIKE 'xxxxxx'  --Provide the table name

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.