findAnswer

如何使用SQLServer中的数据引擎顾问

1.新建一个表 名叫 Information

2.循环插入信息

1 declare @count int=100000
2 while(@count>0)
3 begin
4 --递减
5 set @count=@count-1
6 insert into Infomation values(@count,\'信息标题,信息名称\',\'简介内容\')
7 end
8

3.测试

 select InfoId from Infomation

4.点击鼠标右键

5.选中要优化的数据库

6.点击开始分析

7.数据库给出的优化建议

8.应用建议

9.结果

分类:

技术点:

相关文章:

  • 2021-11-20
  • 2021-11-20
  • 2021-12-23
  • 2021-11-20
  • 2021-04-28
  • 2021-11-20
猜你喜欢
  • 2021-11-20
  • 2021-11-20
  • 2021-11-26
  • 2021-08-28
  • 2021-11-20
  • 2021-12-27
相关资源
相似解决方案