Find Invalid Objects in SQL Server
This article shows how you can find which objects in your database might not be valid after schema changes.
2023-03-13
21,481 reads
This article shows how you can find which objects in your database might not be valid after schema changes.
2023-03-13
21,481 reads
It is easy to attach details and documentation to a SQL Server database using extended properties. In fact, you can add a number of items of information to any database objects such as tables, views, procedures or users.
2019-11-19
Refactoring a database object can often cause unexpected behavior in the code that accesses that object. In this article, adapted from his excellent book, Defensive Database Programming with SQL Server, Alex Kuznetsov discusses several techniques that will harden your code, so that it will not break, or behave unpredictably, as a result such changes.
2015-04-08
11,414 reads
By Steve Jones
This month we have a great invite from Joe Fleming, a first time host...
Joe Fleming wants to know how I solve weird problems. I’m not sure I’m...
By Brian Kelley
I didn't have these in my slides for the Techno Security & Digital Forensics...
Hi, I have a situation in one of the applications I am working on...
As the title says , I've got a handful of stored procs where the...
Is there a trick to get a where clause filter to push into a...
The second parameter for the EOMONTH() function is an integer. In June 2025, if I run this code, what is returned?
DECLARE @d DATE = GETDATE() SELECT EOMONTH(@d, 95695)See possible answers