Viewing 15 posts - 1,696 through 1,710 (of 22,202 total)
You can get some estimates on row counts from the statistics. There's also DMVs that will show estimates on the row counts. However, nothing will show if there's duplicate data...
July 13, 2020 at 1:11 pm
Compare the execution plans. Capture a full set of wait statistics for the query. Use the information from those two sources to see what the primary differences are. Overall, 2016...
July 13, 2020 at 11:19 am
Billions of rows over years and no constraint. I'd put good money down that there are non-unique values.
Easiest way I know to validate this would be to do two queries....
July 13, 2020 at 11:17 am
Yeah, go look at the execution plan for each query. That will show you how the optimizer is using the indexes to satisfy these queries. While a query can logically...
July 10, 2020 at 12:35 pm
I must have reversed it in my head as I've been typing these. Yeah, the estimate was for a lower value, but the higher value was returned. However, same rules....
July 10, 2020 at 10:54 am
Nah, according to the statistics, it's your data. The value passed matches the histogram for the 66,000 rows. Try changing the where clause and you're likely to see a change...
July 9, 2020 at 7:52 pm
So, your stats are skewed. Some values are going to recommend 66,000 rows. Others are going to recommend 2. In this case, one possible solution, is to use a RECOMPILE...
July 9, 2020 at 6:39 pm
You do have a lot of skew in the histogram. See how lots of values are less than 100, but a few are 66,000 & 81,000. If that's an accurate...
July 9, 2020 at 5:22 pm
This object: [DATA_756].[dbo].[gbkmut].[IX_gbkmut_GLCard] [gl]
Had an estimated number of rows 2536.26 and an actual return of 66466. That's a pretty wide disparity. Especially since the table above it shows an estimated...
July 9, 2020 at 11:23 am
Piling on.
Nope. Bad approach.
Good approach: Assume you're not there. Provide as much detail as you can so a competent, but possibly ignorant, individual could get the job done. Go further....
July 8, 2020 at 12:01 pm
Ken! Let's go man. More to do still. You're valued and needed. Please get well soon.
July 7, 2020 at 5:20 pm
Hang on a second. Don't look at the estimated costs of the plans as a measure of performance. It absolutely is not. It's only a measure of the mathematics that...
July 7, 2020 at 1:33 pm
A little testing later, the answer to my own question is answer is sp_statement_starting/completed and filter it by the Type to 'Prepared'. You can see the full query of prepared...
July 2, 2020 at 1:14 pm
The rpc_starting event has a "statement" event field. That is the remote procedure call itself. It will include the procedure name, the parameters passed in, and the values passed to...
July 2, 2020 at 10:41 am
I'd talk 'em through it. They may want write access to be able to set up tests. Insert data sets or update them to prep for a particular test. Makes...
July 1, 2020 at 10:17 pm
Viewing 15 posts - 1,696 through 1,710 (of 22,202 total)