Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Verifying Sql Indexes Status
WhatsApp
Karthik Puppala
Aug 29
2014
1.2
k
0
0
Select
*
from
sys.indexes
where
object_id = (
select
object_id
from
sys.objects
where
name
=
'TABLENAME'
This query will list all tables without an index:
Select
*
from
sys.indexes
where
object_id = (
select
object_id
from
sys.objects
where
name
=
'MYTABLE'
)
SQL Server
Sql Server Queries
Sql Indexs
Up Next
Verifying Sql Indexes Status