Viewing 15 posts - 661 through 675 (of 2,356 total)
Is there an actual error you are receiving? There's not enough information here.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
November 4, 2021 at 5:16 pm
Your secondary is not configured to allow a readable secondary. 
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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. ...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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....
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
November 2, 2021 at 8:12 pm
Well, this is interesting. SQL 2022. No more parameter sniffing?
https://www.youtube.com/watch?v=ncF-zFzBDAY
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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
...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
October 28, 2021 at 3:20 pm
I'm with Phil. Why are you doing this?
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
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...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
October 27, 2021 at 10:53 pm
Viewing 15 posts - 661 through 675 (of 2,356 total)