Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Do you reindex DB?
Message
From
13/05/2021 16:56:43
 
General information
Forum:
Microsoft SQL Server
Category:
Indexing
Miscellaneous
Thread ID:
01680338
Message ID:
01680429
Views:
22
>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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform