Identify and Correct a Large SQL Server Error Log
Learn how to find and remove a large SQL Server Error Log file when it consumes a lot of space on your drive
2022-08-03
Learn how to find and remove a large SQL Server Error Log file when it consumes a lot of space on your drive
2022-08-03
In this tip we look at how to parse the SQL Server error log to only extract the errors and corresponding error messages.
2021-02-01
2017-05-22
990 reads
2017-04-03
1,086 reads
The code in this tip will show how to use two system stored procedures to identify all iterations of a given string in the available SQL Server error logs since a specific point in time.
2014-01-23
3,148 reads
2017-02-02 (first published: 2013-09-16)
17,368 reads
How do I find out where the SQL Server Error Log file is located for a specific SQL Server instance? In this tip we look at different ways a DBA can identify the location of the SQL Server Error Log file used by an instance of SQL Server.
2011-10-27
3,019 reads
By Steve Jones
I saw a post internally that asked this question: Anyone have a handy powershell...
By Rob Sewell
The partner directory connects your agency with new customers.
I had an excellent group of people in Gothenburg Sweden when I taught there...
Comments posted to this topic are about the item GIT Configuration and Automated Release...
My table1 has a column that has the following in it: (2)Joystick,(3)Candies,(6)Wires I want...
CREATE TABLE TempA ( InvoiceNo VARCHAR(50) NOT NULL, Date TIMESTAMP NULL, Type VARCHAR(50) NULL,...
What is the result of this code?
SELECT CONCAT(1, 2, 3) + 4See possible answers