Logo

dev-resources.site

for different kinds of informations.

Find logged Microsoft SQL Server Messages

Published at
1/10/2025
Categories
sql
sqlserver
database
help
Author
flnzba
Categories
4 categories in total
sql
open
sqlserver
open
database
open
help
open
Author
6 person written this
flnzba
open
Find logged Microsoft SQL Server Messages

Navigating SQL Server Error Codes: A Guide to Understanding 28000 to 30999

Today I encounterd an Error when creating an ODBC Connection. It stated the โ€œSQL State Error: 28000โ€.

The Microsoft documentation provides a comprehensive list and explanation of SQL Server error codes from 28000 to 30999. This range includes errors related to authentication issues, permissions, and configuration problems, which are common when setting up or managing SQL Server databases. There you can find the SQL Code to search for all possible Error Codes, the description and if the error exists in the logs.

I modified the code slightly to just search for the error code โ€œ28000โ€.

SELECT message_id AS Error,
    severity AS Severity,
    [Event Logged] = CASE is_event_logged
        WHEN 0 THEN 'No' ELSE 'Yes'
        END,
    [text] AS [Description]
FROM sys.messages
WHERE language_id = 1033 AND message_id = 28000 /* replace 1040 with the desired language ID, such as 1033 for US English */
ORDER BY [Event Logged], message_id DESC;
Enter fullscreen mode Exit fullscreen mode

Link to Documentation: Microsoft Learn

Read this article and more on fzeba.com.

help Article's
30 articles in total
Favicon
Building a Serverless REST API with AWS Lambda and API Gateway
Favicon
๐Ÿ’ก How Do You Generate Your Cover Images for Blog Posts?
Favicon
https://medium.com/@hnsarkar2611/deployment-problem-in-vercel-6ec1c5a04615
Favicon
SEO AI: Your Secret Weapon for Boosting SEO Performance!
Favicon
Find logged Microsoft SQL Server Messages
Favicon
"Is Jenkins better than Docker? Or are they meant for different purposes?"
Favicon
MDB Ui kit issue in angular 19
Favicon
node unsupported engine when updating npm
Favicon
Hello, World!
Favicon
How to backup a Linux system?
Favicon
Hi I am new to programming I have encountered a problem is that when I write import random I encounter syntaxerror in Python.
Favicon
When GitHub Actions Build Fails Due to pnpm-lockfile
Favicon
I am an aspiring AI student and a complete beginner to programming. Can anyone guide me on where to start my programming journey?
Favicon
Quero encontrar alguรฉm que possa me ajudar com o estudo de c#
Favicon
**ยกHoy es el dรญa para darle un ๐Ÿ’– a tu salud mental!ย **
Favicon
Exiting Pydroid3-scripts nicely
Favicon
Lovable PDF Generation
Favicon
Confusion about coding field after introduced chatgpt and other AI models AI can make itself code and also make websites and apps etc. We have a carrier confusion because I am a BTech 1st year computer science student. Please help.
Favicon
Understanding and Resolving System.InvalidCastException in C#
Favicon
Common Heating System Issues and How Repairs Solve Them
Favicon
Struggling with JavaScript loops! When I try restarting i in a for or while loop with setTimeout, things go wrong. The for loop doesnโ€™t restart as expected. Any tips on managing loop resets without breaking logic?
Favicon
I want to connect my flutter app with kafka websocket,is that possible??!
Favicon
Looking for a mentor who could lead me to a right way for RPA developers
Favicon
Can anyone help me with this? I'm working on xampp to setup my php using mysql. Even gtp is not able to solve this issue.
Favicon
Coinbase CASHOUT Support Phone Number
Favicon
Can I Dispute a Transaction on Coinbase? To get support on the Coinbase website, start by visiting the Help Center, where you can find detailed articles and guides that may address your issue. For more personalized assistance, you can also reach out via.
Favicon
How do I get a refund from Coinbase?
Favicon
Issue Activating Paid Key on Luxand
Favicon
Coinbase support number
Favicon
looking for job in it

Featured ones: