Viewing 15 posts - 661 through 675 (of 2,356 total)
Is there an actual error you are receiving? There's not enough information here.
November 4, 2021 at 5:16 pm
Your secondary is not configured to allow a readable secondary.
November 4, 2021 at 4:31 pm
If I understand your question, you want to use the same SQL installation for multiple SSRS installations? If that's true, I have a single SQL server that contains 4 different...
November 4, 2021 at 4:28 pm
{Thousands of recompiles a day} vs {thousands of extra table scans a day} is an easy choice. I'd have to see actual damage from the recompiles to recommend differently. ...
November 4, 2021 at 3:25 pm
Test the given catch-all options ! YMMV ( I'm on the "option (recompile) should be a last choice" side)
Yeah. Without duplicating some tests of this that I did quite...
November 4, 2021 at 12:34 pm
Yes. WHERE character_column LIKE ‘string%’
To elaborate, currently when a user calls the help desk, we need to identify the client they work for, as well as a few other things....
November 2, 2021 at 9:31 pm
Actually you could be causing a performance problem by getting SQL to use the same query plan for different values, i.e., by avoiding the "overhead" of a recompile. The...
November 2, 2021 at 8:12 pm
Well, this is interesting. SQL 2022. No more parameter sniffing?
November 2, 2021 at 7:55 pm
Search this site for "query performance" or sys.dm_exec_query_stats.
There are a wealth of queries that will tell you what you need.
This one is a start.
select top 20
...
November 2, 2021 at 7:54 pm
To expand upon this, and maybe provide some ideas that can ease your pain, here are some thoughts. I had this same situation a while back. The difference was that...
November 2, 2021 at 7:41 pm
The example is for a query called by the Customer List page of the web application. It will execute 1000's of times a day.
In that case, please see...
November 2, 2021 at 6:55 pm
To expand on the reason I'm not using other DDL scripting methods is because I'm looping through hundreds of tables and running tests on converting data types and changing...
October 29, 2021 at 1:44 pm
One could argue that your plan is fatally flawed.
It should not be a backup plan, it should be a recovery plan.
As such, you likely would have discovered the answers to...
October 28, 2021 at 3:20 pm
I'm with Phil. Why are you doing this?
October 27, 2021 at 10:58 pm
Can you explain further? How exactly are you refreshing this? Backup and restore? Replication Snapshot? Something else?
Once the process completes, you then run a re-index process. Why? Are the indexes...
October 27, 2021 at 10:53 pm
Viewing 15 posts - 661 through 675 (of 2,356 total)