Viewing 15 posts - 16 through 30 (of 309 total)
I just checked log_reuse_wait_desc and it shows 'AVAILABILITY_REPLICA'. I know now what's causing this.
Thanks for the help.
September 18, 2020 at 2:22 pm
Hi,
if you got this error next time, just take a look at this query:
SELECT
name AS DatabaseName,
log_reuse_wait_desc AS LogBlocking,
...
May 5, 2020 at 12:13 pm
Sorry, found a solution. We have a DAG and someone was working on DR server so DBs is out of sync and that's what causing the issue.
May 4, 2020 at 2:19 pm
Sue_H, screenshots which I shared last week were from the Extended events session for the Always on health.
February 3, 2020 at 2:37 pm
I believe we have 4 servers (Node1, Node2, node3 and node4) in one subnet. All physical servers. Environment details.
Node1 act as a primary for 1st AG. Node 2, Node 3...
January 27, 2020 at 3:58 pm
This is the patch level we are on.
Microsoft SQL Server 2016 (SP2-CU10) (KB4524334) - 13.0.5492.2 (X64)
January 24, 2020 at 12:14 pm
I tried this method and it worked. I turned off the encryption, dropped the encryption on the database, took the backup, restore the database on the secondary with norecovery, join...
January 3, 2020 at 3:09 pm
Replacing the file worked, however; I am not able to join the DBs into AG.
I took the full backup and then the log backup of the database on a primary...
January 3, 2020 at 2:22 pm
Replacing a file worked. Thanks!
January 3, 2020 at 1:41 pm
Just restarted the SQL Server service and it helped.
January 2, 2020 at 1:20 pm
I mean I just didn't run just DBCC shrinkfile. This is the complete command I ran for all 8 files but still no luck.
USE [tempdb]
GO
DBCC SHRINKFILE (N'tempdev'...
January 2, 2020 at 12:25 pm
I have tries using couple of different methods.
December 31, 2019 at 1:59 pm
Try this
IF (OBJECT_ID('tempdb..#DatabaseSize')) IS NOT NULL DROP TABLE #DatabaseSize
CREATE TABLE #DatabaseSize (
DatabaseName VARCHAR(255),
FileLogicalName VARCHAR(255),
FilePhysicalName VARCHAR(1000),
AllocatedGB NUMERIC(12,2),
UsedGB NUMERIC(12,2))
DECLARE @ServerName VARCHAR(255)
DECLARE...
December 17, 2019 at 5:41 pm
I see what you are saying but the problem is not about removing the database. Environment details to help you better understand.
We have AG1 (DAG) which acts as a Primary
We...
December 17, 2019 at 5:06 pm
Viewing 15 posts - 16 through 30 (of 309 total)