Viewing 15 posts - 1 through 15 (of 16 total)
Lowell (12/27/2013)
Banks1850 (12/27/2013)
and there are none that are listed as out of date when I...
December 29, 2013 at 4:29 am
GilaMonster (12/27/2013)
And the last_wait_type column?
Gail, last wait type for all of them is SOS_SCHEDULER_YIELD
December 28, 2013 at 7:51 am
LutzM (12/28/2013)
December 28, 2013 at 7:48 am
oh, forgot to add, the wait info is null on those statements.
December 27, 2013 at 1:17 pm
oh, I see, yes, that's not my call, I'm not allowed to actually change the database schema at all, I'd have to go to our lead engineer and put in...
December 27, 2013 at 10:18 am
they're not redundant, 1st post is for the versionfileinfo table
and second is for the userfileinfo table
in terms of our application, one is for our block storage, and the other is...
December 27, 2013 at 9:31 am
I'll capture the wait types the next time this issue occurs, currently it's not happening on any servers, but that will surely change within a day or so. ...
December 27, 2013 at 9:15 am
and here are the indexes for the 2nd table
CREATE CLUSTERED INDEX [ixc_BackupSetId] ON [dbo].[UserFileInfo]
(
[BackupSetId] ASC
)
CREATE NONCLUSTERED INDEX [ix_BackupSetAndVersion] ON [dbo].[UserFileInfo]
(
[BackupSetId] ASC,
[FirstVersionId] ASC
)
INCLUDE ( [LastVersionId],
[VersionFileLocalNameId],
[UserFileInfoId],
[IsFinished])
CREATE NONCLUSTERED INDEX [ix_FileNameCRC]...
December 27, 2013 at 9:03 am
here's the indexes for the VersionFileInfo table (the first table)
CREATE CLUSTERED INDEX [ixc_BackupSetId] ON [dbo].[VersionFileInfo]
(
[BackupSetId] ASC
)
CREATE NONCLUSTERED INDEX [ix_Cleanup] ON [dbo].[VersionFileInfo]
(
[BackupSetId] ASC,
[VersionFileInfoId] ASC
)
INCLUDE ( [VersionFileLocalNameId],
[FirstUserFileInfoId],
[LastUserFileInfoId])
CREATE NONCLUSTERED INDEX...
December 27, 2013 at 8:59 am
GilaMonster (12/27/2013)
What wait...
December 27, 2013 at 8:36 am
Gail,
Thanks for the reply, I'll grab all that info and post it.
the query itself is this:
SELECT TOP 1 ufi.UserFileInfoId
FROM userfileinfo ufi WHERE EXISTS
(
SELECT vfi.VersionFileInfoId FROM VersionFileInfo vfi
WHERE ufi.BackupSetId =...
December 27, 2013 at 8:28 am
I'm seeing the queries using sp_whoisactive already.
that's how I'm able to see the queries slowing down.
I've checked for locks (nothing unusual, these queries are not being blocked)
there's no latch waits...
December 27, 2013 at 8:18 am
statistics are updated daily and automatically for all tables right after the index maintenance is performed.
and there are none that are listed as out of date when I check.
December 27, 2013 at 7:56 am
We used doubletake forever at my old job, they use checksums to confirm a good write commit. And you can set it up to email or otherwise alert...
February 21, 2013 at 7:34 pm
Thank you guys, in fact none of the resources really gave me a clear picture, so I called microsoft. Ironically, I had to go to support to get...
February 18, 2012 at 4:51 am
Viewing 15 posts - 1 through 15 (of 16 total)