Viewing 15 posts - 526 through 540 (of 22,189 total)
Exactly that, or, have a second job scheduled two hours after the one that starts it.
February 22, 2023 at 1:42 pm
So catching up and getting back into the forums here...
Saw the talk about the SQL conferences and this may be the first year I go to PASS Summit! When...
February 22, 2023 at 1:14 pm
Always a fan of "whatever works". Glad you found a solution.
February 21, 2023 at 2:28 pm
Full text indexes are an option. Although, in all honesty, I hate 'em. Hard to maintain and frequently don't actually speed things up much, if at all. Extra storage. Ugh....
February 21, 2023 at 2:02 pm
Trying to get different perspectives! May be I am looking at the things might not be the right. Getting awareness from wise people will definitely make me think with...
February 20, 2023 at 9:19 pm
Other thing is, SQL optimizer has not suggested any missing indexes in the actual execution plan.
We are on SQL Server 2017 EE.
The optimizers suggesting for missing indexes are, at...
February 17, 2023 at 5:36 pm
Should be relatively straightforward. A check constraint will have to perform some action to validate the data, let's keep it simple and say all values have to be > 0....
February 17, 2023 at 5:33 pm
So, performance comes down to identical behaviors. A similar query running on a similar structure with similar data sets may, yeah, perform wildly different. This is because every little thing...
February 17, 2023 at 5:27 pm
Oh yeah, take a look at the execution plan. You can just get an estimated plan, you don't have to execute the query. That will show you all the activity...
February 17, 2023 at 1:27 pm
Almost impossible to tell you exactly what is wrong without more data. It could be as simple as you didn't commit your transaction. It could be blocking. Assuming you have...
February 16, 2023 at 1:56 pm
It's simple. COALESCE as part of filtering criteria, WHERE/ON/HAVING, means that statistics and indexes can't be used becuase you're making a calculation. That's going to slow things down, leading to...
February 16, 2023 at 1:52 pm
It does. It's just not obvious when looking at the XML. You can open the blocked process report as a report which will resolve the values for you. However, to...
February 15, 2023 at 5:15 pm
I once built a system that could query for query text and then execute that. It was a way to intentionally allow people to inject SQL code into the system...
February 15, 2023 at 1:06 pm
It's going to be the same as the other stuff we've been talking about. You have to capture metrics that show where the slow points are. Extended Events are your...
February 15, 2023 at 12:52 pm
It's going to be the same as the other stuff we've been talking about. You have to capture metrics that show where the slow points are. Extended Events are your...
February 15, 2023 at 12:52 pm
Viewing 15 posts - 526 through 540 (of 22,189 total)