This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Top Critical Components of Data Engineering |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What strategies does WSFC use to prevent split-brain scenarios? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date/Time: 2023-06-22 09:00:00 | |
Log Level: Information | |
Source: SQL Server | |
Message: Database 'MyNewDatabase' was created by user 'admin'. | |
Date/Time: 2023-06-22 10:00:00 | |
Log Level: Information | |
Source: SQL Server | |
Message: Database 'OldDatabase' was deleted by user 'admin'. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @IsPrimary INT; | |
DECLARE @JobName NVARCHAR(128); | |
-- Check if the current node is the primary replica | |
SELECT @IsPrimary = CASE | |
WHEN role_desc = 'PRIMARY' THEN 1 | |
ELSE 0 | |
END | |
FROM sys.dm_hadr_availability_replica_states AS ars | |
JOIN sys.availability_replicas AS ar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date/Time: 2023-06-22 14:00:00 | |
Log Level: Warning | |
Source: SQL Server | |
Message: High CPU usage detected. SQL Server is utilizing 90% of the available CPU resources. | |
Date/Time: 2023-06-22 14:30:00 | |
Log Level: Warning | |
Source: SQL Server | |
Message: SQL Server has detected memory pressure. The buffer cache hit ratio is below the recommended threshold. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date/Time: 2023-06-22 08:00:00 | |
Log Level: Information | |
Source: Replication | |
Message: Publication 'SalesDataPublication' was created successfully. | |
Date/Time: 2023-06-22 09:00:00 | |
Log Level: Information | |
Source: Replication | |
Message: Subscription to publication 'SalesDataPublication' was initialized successfully for subscriber 'SubscriberServer'. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date/Time: 2023-06-22 10:23:54.32 | |
Log Level: Information | |
Source: Always On | |
Message: The state of the availability group 'AG1' has changed from 'RESOLVING' to 'PRIMARY'. | |
Date/Time: 2023-06-22 10:25:03.78 | |
Log Level: Warning | |
Source: Always On | |
Message: An automatic failover occurred in availability group 'AG1'. The primary replica is now 'Replica |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date/Time: 2023-03-03 09:00:00 | |
Log Level: Information | |
Source: SQL Server | |
Message: Login succeeded for user 'username'. Connection: Non-Trusted. | |
Date/Time: 2023-03-03 09:05:00 | |
Log Level: Error | |
Source: SQL Server | |
Message: Login failed for user 'username'. Reason: Password did not match that for the login provided. [CLIENT: <local machine>] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date/Time: 2023-03-03 10:00:00 | |
Log Level: Information | |
Source: Backup | |
Message: Database backed up. Database: MyDatabase, creation date(time): 2023/02/02(14:00:00), pages dumped: 350, first LSN: 73000000009200037, last LSN: 73000000009600001, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\Backups\MyDatabase.bak'}). | |
Date/Time: 2023-03-03 11:00:00 | |
Log Level: Information | |
Source: Restore | |
Message: Database restored. Database: MyDatabase, backup start date(time): 2023/03/03(10:00:00), backup end date(time): 2023/03/03(10:30:00), number of backup devices: 1, device information: (FILE=1, TYPE=DISK: {'C:\Backups\MyDatabase.bak'}). |
NewerOlder