Viewing 10 posts - 1 through 10 (of 10 total)
Thanks for the feedback sir!
July 5, 2016 at 7:44 am
g.britton (7/14/2015)
scorchpc 96170 (7/14/2015)
g.britton (7/14/2015)
scorchpc 96170 (7/14/2015)
Hi,I am curious.
Are you able to automate the creation of an Excel file that preserves data types?
depends what you mean by preserves data types....
July 15, 2015 at 10:34 am
g.britton (7/14/2015)
scorchpc 96170 (7/14/2015)
Hi,I am curious.
Are you able to automate the creation of an Excel file that preserves data types?
depends what you mean by preserves data types. Can you...
July 14, 2015 at 9:52 am
Hi,
I am curious.
Are you able to automate the creation of an Excel file that preserves data types?
July 14, 2015 at 8:56 am
I tried, but still the DB just grew. Oh well.
DECLARE @TableName VARCHAR(255)
DECLARE @sql NVARCHAR(500)
DECLARE @fillfactor INT
SET @fillfactor = 80
DECLARE TableCursor CURSOR FOR
SELECT OBJECT_SCHEMA_NAME([object_id])+'.'+name AS TableName
FROM sys.tables
OPEN TableCursor
FETCH NEXT...
June 30, 2013 at 9:11 am
Hi Paul,
Q: Do all affected tables have a clustered index?
A: No
Q: In the affirmative case, was each one of such clustered indexes rebuilt?
A: Assuming the script I posted works,...
June 10, 2013 at 1:33 pm
FYI
I have a smaller server in China that wasn't as bad, but could still use this.
I tried rebuilding the indexes on just the affected table only, it helped a bit,...
June 10, 2013 at 1:06 pm
will do, I'll let you guys know the results
Thanks again!
June 10, 2013 at 9:08 am
Hi Paul and Mike,
Do you guys think I should rebuild all indexes on all tables? Or just indexes on the affected table?
I am thinking all indexes on all tables really...
June 10, 2013 at 9:02 am
Thanks for the fast responses guys.
I suspected something like this. The next time no one is working, I will backup the DB then try the above advice.
Thanks again!
June 10, 2013 at 8:36 am
Viewing 10 posts - 1 through 10 (of 10 total)