Viewing 15 posts - 1 through 15 (of 194 total)
I did some more testing and investigations. turns out the queries running against target table is using "with(nolock)" table hints. This, in my understanding, from the testing is what's causing...
March 10, 2021 at 5:31 pm
Thanks Grant
I have created new thread with some more info:
https://www.sqlservercentral.com/forums/topic/empty-index-statistics-object
March 8, 2021 at 6:28 pm
I realize this thread is two years old....
I too am on Sql 2016 in Compatibility mode 2012. In the past four months we have had three occurrences of this problem.
We...
March 5, 2021 at 6:25 pm
Thanks Chris for the response.
As we moved 400GB of data from the source files, and it is very unlikely to be require in the near future, the shrink...
April 27, 2017 at 12:21 am
We came to the similar conclusion, i.e. the shrink affected the table. That is when we started looking at the table and index (statistics) statuses. Rebuild indices and the table...
April 26, 2017 at 10:41 am
thanks, but we already have a solution. we are just interested in an actual explainantion for future reference i.e why index maintenance resulted in this sudden change in behaviour
April 26, 2017 at 8:31 am
We have confirmed that updating statistics with fullscan did not improve query performance
April 26, 2017 at 6:22 am
From what I have read the Cisco UCS sytem as example does exactly that:
Start with one, add a new blade, configure and you have the extra processing power on the...
January 21, 2013 at 9:59 pm
okay, so maybe my understanding is incorrect
as examples:
Fixed server: 4 sockets, 8 memory slots, dual NIC, dual IO connectors
Blade: Four server slots, each with above
When server become hardware bound, for...
January 17, 2013 at 12:00 am
Fixed servers have limitation too. The blades, from what i understand, can be "grown" to a greater extent as the SQL server demands increase and it is therefore possibly...
January 16, 2013 at 9:41 pm
Cross Apply's usage is for joining Table1 to the results set of a Table Valued user defined function that uses one or many values from the rows in Table1...
November 9, 2009 at 2:32 am
Looking at the attached SP this is a Oracle Db
ref SYSDATE and RAISE_APPLICATION_ERROR
are not SQL functions
November 5, 2009 at 12:22 am
without knowing your exact requirements this may be inappropriate
Instead of this massive loop why not simple use something like below, note:- Below is not a complete solution
Select
PossibleDate
From
(
----AllPossibleDays
Select top( Select...
November 4, 2009 at 5:54 am
CONVERT( datetime, [Date], 103 )
November 4, 2009 at 5:44 am
you could do a group by on
bnoun, upp,
And
Min( [1] ) AS side1,
Min( [2] )...
November 4, 2009 at 1:41 am
Viewing 15 posts - 1 through 15 (of 194 total)