TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
DataBase Table in SQL server
Ashok Sharma
Feb 25, 2014
2.6
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
Here, we will see how to find out about all the tables in my database, in the SQL Server.
Look at the following query; it will fetch all the tables in your database using the Query.
use ABC --here ABC is database Name
select distinct TABLE_NAME from INFORMATION_SCHEMA .TABLES
DataBase Table in sql server
Next Recommended Reading
Get list of Stored Procedure and Tables from Sql Server database