Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Do you reindex DB?
Message
De
13/05/2021 16:56:43
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Indexation
Divers
Thread ID:
01680338
Message ID:
01680429
Vues:
23
>Thank you. I will Google the WA_Statistics since I know nothing about it.

Try this script :
if object_ID('TempDB..#Stats') is not null
   drop table #Stats

create table #Stats (TableName varchar(128), Statistics_Name varchar(128), Statistics_Keys varchar(128))

if object_ID('TempDB..#Stats_Temp') is not null
   drop table #Stats_Temp

create table #Stats_Temp (Statistics_Name varchar(128), Statistics_Keys varchar(128))

exec sp_MSforeachtable 
  'insert into #Stats_Temp execute sp_helpstats ''?'', ''ALL''','?','insert into #Stats select ''?'', * from #Stats_Temp','delete from #Stats_Temp'

select * from #Stats where Statistics_Name like '_WA%'
Michel Fournier
Level Extreme Inc.
Designer, architect, owner of the Level Extreme Platform
Subscribe to the site at https://www.levelextreme.com/Home/DataEntry?Activator=55&NoStore=303
Subscription benefits https://www.levelextreme.com/Home/ViewPage?Activator=7&ID=52
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform