问题描述:云商助手环境配置正常,但是手机上老板通提示网络超时,且重装重启云商助手无效

解决方法:执行语句,执行完毕重启云商助手即可
DECLARE @name varchar(100)
DECLARE authors_cursor CURSOR FOR
SELECT [name] from sysobjects where xtype='u' order by id
OPEN authors_cursor
FETCH NEXT FROM authors_cursor INTO @name
WHILE @@FETCH_STATUS = 0
BEGIN
DBCC DBREINDEX (@name, '', 90)
FETCH NEXT FROM authors_cursor INTO @name
END
deallocate authors_cursor