Sqlserver
 sql >> Baza danych >  >> RDS >> Sqlserver

Jak znaleźć wyłączony indeks na serwerze SQL 2008?

select
    sys.objects.name as table_name,
    sys.indexes.name as index_name
from sys.indexes
    inner join sys.objects on sys.objects.object_id = sys.indexes.object_id
where sys.indexes.is_disabled = 1
order by
    sys.objects.name,
    sys.indexes.name



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Wyświetl listę kont skojarzonych z profilem poczty bazy danych w SQL Server

  2. Porównanie daty i czasu SQL Server w różnych formatach

  3. Jak utworzyć widok w SQL Server

  4. Znajdź zmienione wiersze (klucz złożony z wartościami null)

  5. Konwertuj „datetime2” na „datetimeoffset” w SQL Server (przykłady T-SQL)