Viewing 15 posts - 5,641 through 5,655 (of 22,211 total)
I can't know that it'll solve the problem since we're not sure where the contention is coming from. However, I can say with some assurance, it's definitely going to somewhat...
August 26, 2015 at 12:12 pm
mar.ko (8/26/2015)
Thanks Grant...now I wonder if "someone" sabotaged me.I created a stored proc to reset them to one plus the highest value in the related tables.
Yeah, and no way to...
August 26, 2015 at 12:10 pm
It suggests an I/O issue. A couple of things could be causing that. First, have you looked at the execution plans when the query is doing more I/O? If they're...
August 26, 2015 at 11:26 am
I have an explanation from Paul White, so I put a lot of faith in it.
It was my understanding that when a plan was found that was adequate according to...
August 26, 2015 at 10:27 am
GilaMonster (8/26/2015)
And you've changed snippets. de <space> gets...
August 26, 2015 at 8:13 am
Ed Wagner (8/26/2015)
Hugo Kornelis (8/26/2015)
GilaMonster (8/26/2015)
Gazareth (8/26/2015)
But probably the most common: DELCARE left left left backspace left C 😛
In that case, mine would be SEELCT left left backspace left L...
August 26, 2015 at 8:06 am
mar.ko (8/26/2015)
I'm not sure....I didn't do it.
Ah... well, then other stuff may have been run. It's hard to say without knowing more. I ran this test:
USE TestDB;
GO
CREATE SEQUENCE dbo.MySequence
START...
August 26, 2015 at 8:03 am
I don't know why that property is sometimes missing from a plan. I'll see if I can find out.
How are you capturing this query? Through SSMS? Querying the cache? Capturing...
August 26, 2015 at 7:25 am
Another vote for No.
It's a fight you're likely to lose unless you can provide alternatives. I'd suggest looking at log shipping to another server. If you can, get upgraded to...
August 26, 2015 at 3:51 am
Can you post one or two samples of the plans that don't have that property?
August 26, 2015 at 3:46 am
I don't see any indications in the documentation that the ALTER DATABASE command would reset sequences. What process or syntax did you use to rename the database?
August 26, 2015 at 3:45 am
sgmunson (8/25/2015)
Jeff Moden (8/25/2015)
sgmunson (8/25/2015)
Rod at work (8/24/2015)
August 25, 2015 at 7:52 pm
If it ignored the index, it's because it wasn't satisfying the queries. Columnstore indexes work best with aggregate style queries. They don't work at all well with point lookup or...
August 25, 2015 at 3:36 pm
Part of the DBCC process creates a snapshot of the database. That snapshot was marked corrupted due to an I/O issue (undetermined from here). So your main database is fine.
However,...
August 25, 2015 at 4:53 am
I'm with Sean. It sure sounds like normalization might be an issue. I'd focus there as well.
In terms of impact of adding a column, it depends. If you're talking about...
August 25, 2015 at 4:50 am
Viewing 15 posts - 5,641 through 5,655 (of 22,211 total)