Viewing 15 posts - 1 through 15 (of 98 total)
Can you build up a new server ('name_new) and then when ready to migrate, rename the old server to 'name_old', then rename the new server to the existing server name? ...
June 26, 2025 at 6:29 pm
Window function is another way:
-- Selecting Duplicate Records
With CTE_Employee
AS (Select Employee_ID,
Employee_Name,
...
May 28, 2025 at 7:01 pm
We have a patching system, it will execute a 'stop' before restarting, I see those in my logs during our company's maint window. Do you have some kind of patch...
April 25, 2025 at 6:31 pm
Enable the DAC so you can get in and see what is running when it locks up (sp_whoisactive).
March 31, 2025 at 8:27 pm
Did you try right clicking on the database, go to options, and set the Read-Only to False?
February 24, 2025 at 9:42 pm
DBATools is awesome for this: Invoke-DbaDbClone
November 21, 2024 at 4:35 pm
About the only time I see something like this is when I grabbed the wrong backup (an older one). You are certain you grabbed the correct backup file? Did you...
August 28, 2024 at 2:34 pm
If the issue isn't DNS it's probably a Kerberos\SPN issue:
You can use the MS Kerberos tool to check it:
https://www.microsoft.com/en-us/download/details.aspx?id=39046
Also, is the SQL Browser Service running?
July 15, 2024 at 2:04 pm
Shouldn't it be IP, port (comma not colon) ?
July 8, 2024 at 4:23 pm
Rollbacks are single threaded so it can take much longer than than the parallel operation that got you there.
May 10, 2024 at 9:39 pm
I would give 'dbcc updateusage' a try. I can tell you this has fixed weird disk performance on new servers for me more than once.
May 3, 2024 at 6:22 pm
#1. Since nobody has responded, I'll offer maybe a bump in the right direction. I've found SPN's are very important to SSRS. I'd make sure you have a domain account...
April 22, 2024 at 2:14 pm
In AD, did you give the service account the 'Trust for delegation' property?
February 26, 2024 at 7:22 pm
https://dbatools.io/ - makes this very simple
You can use 'Sync-DbaLoginPermission' (everything) or 'Export-DbaDbRole' (to get role)
December 6, 2023 at 4:35 pm
Shrink it in smaller chunks.
Google for a script to reduce it incrementally.
https://www.sqlservercentral.com/blogs/sql-database-incremental-shrink-tsql
November 20, 2023 at 5:45 pm
Viewing 15 posts - 1 through 15 (of 98 total)