Home  >  Article  >  Database  >  Update statistics for a table in the database

Update statistics for a table in the database

大家讲道理
大家讲道理Original
2016-11-12 10:55:191884browse

IF EXISTS(SELECT name FROM sys.databases WHERE name=N'Test')
BEGIN
USE Test
EXEC sp_updatestats
END
GO

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn