Viewing 15 posts - 91 through 105 (of 543 total)
For question #1, just do a test. I think that you'll find that the stats take a lot longer because Index Rebuilds only affect/rebuild the columns they...
March 5, 2023 at 10:55 am
For question #1, just do a test. I think that you'll find that the stats take a lot longer because Index Rebuilds only affect/rebuild the columns they actually use. Stats...
March 3, 2023 at 1:11 pm
Rebuilding an index does two things. First, since you're literally rebuilding the index, it reorders the pages and the rows on those pages. This has a benefit in that...
March 2, 2023 at 6:02 pm
I don't understand why you would have indexes (apart from maybe a clustered one) on a table with only a few rows?
I wasn't sure about it. They were there...
March 1, 2023 at 7:35 pm
Yes. Its a small table. Question is , when there is 0 rows in the table, and when we say SELECT * FROM <Tname> , why SQL Server...
March 1, 2023 at 7:30 pm
It can, yes. Ghost cleanup can also block you.
The vendor can't leave this with you. You can't change the code, and the code needs to be changed. You also...
February 28, 2023 at 5:11 pm
Yes. Its a small table. Question is , when there is 0 rows in the table, and when we say SELECT * FROM <Tname> , why SQL...
February 28, 2023 at 3:57 pm
So, yeah, about what I expected. A clustered index scan and nothing else.
So, your #1 problem query is SELECT * from a table with two rows in it?
Dude, go...
February 28, 2023 at 3:35 pm
For now, rebuilding all the indexes on the tables every 1 hour is giving some relief. query returns in few milli secs.
February 28, 2023 at 3:06 pm
I'm afraid I don't understand. What's that? It's a picture of some data from a query running SELECT * returning 2 rows. I'm confused.
Yes sir. It returns 2 rows...
February 28, 2023 at 2:54 pm
uploaded Actual execution plan. PFA zip file.
February 28, 2023 at 2:38 pm
What do the execution plans look like? What do the queries look like. There's not a 'run faster' switch that can be flipped here. Without some understanding of the...
February 28, 2023 at 2:35 pm
Is this related to/a continuation of https://www.sqlservercentral.com/forums/topic/pagesplits-question?
Why don't you have a clustered index?
What column(s) are used in the where clause for doing deletes?
What difference will it make if...
February 27, 2023 at 10:30 pm
What type of values are used in ROWID_LOCK?
Are they numeric strings? alphanumeric? Are they ordered or random?
February 27, 2023 at 10:20 pm
Is this related to/a continuation of https://www.sqlservercentral.com/forums/topic/pagesplits-question?
Why don't you have a clustered index?
What column(s) are used in the where clause for doing deletes?
What difference will it make if I...
February 27, 2023 at 10:00 pm
Viewing 15 posts - 91 through 105 (of 543 total)