A great way to keep tabs on the overall health of your SQL Server. Pricing: $129.99 per month per SQL Server instance when paid month to month. Payment on a recurring payment by credit card plan required. We provide monitoring tools that alert us when there is an issue so that we can recommend fixes before the issue becomes a …

Stedman Solutions Daily Monitoring Product Read more »

As businesses increasingly rely on data to make decisions and operate, the importance of protecting that data has become paramount. This is especially true for databases like SQL Server, which store large amounts of critical data that businesses depend on. One of the most critical steps in protecting your SQL Server is to run regular backups. In this blog post, …

Why Backups are Crucial for SQL Server: Protecting Your Data and Your Business  Read more »

DBCC CLEANTABLE is a DBCC command in Microsoft SQL Server that can be used to remove deleted rows from a table and reclaim the space occupied by the deleted rows. It is similar to the TRUNCATE TABLE command, but unlike TRUNCATE TABLE, DBCC CLEANTABLE preserves the structure of the table and does not reset the identity values of any identity …

SQL Server DBCC Commands: DBCC CLEANTABLE Read more »

In the end it will come down to one question. That question being, “how much data can your company afford to lose? One hour? One day? One week? Choose wisely or it could cost more than you think. For example, if you’re a doctors office and you have backups running every other day, you may lose 12+ hours of patient …

Incorrect Backups? You’ll Pay for That Mistake Read more »

SQL Server is a popular relational database management system that is widely used in businesses and organizations of all sizes. One of the most important operations in SQL Server is joining tables, which involves combining data from two or more tables based on a common column or set of columns. To help users better understand the different join types and …

SQL Server Join Types Poster   Read more »

As a SQL Server professional with many years of experience, I know how important it is to understand the different types of joins. Join types are a fundamental concept in SQL Server, and they are essential for retrieving data from multiple tables. In this article, I will explain the differences between inner join, left outer join, and right outer join …

Details on Inner, Left Outer, and Right Outer  Read more »

DBCC FREEPROCCACHE is a DBCC command in Microsoft SQL Server that can be used to clear the procedure cache, which is a region of memory that stores the execution plans for stored procedures, triggers, and ad hoc Transact-SQL batches. Clearing the procedure cache can be useful for troubleshooting performance issues or testing the effects of changes to the database schema …

SQL Server DBCC Commands: DBCC FREEPROCCACHE Read more »

SQL Server is a powerful relational database management system used by businesses and organizations of all sizes. One of the most important operations in SQL Server is joining tables, which involves combining data from two or more tables based on a common column or set of columns. To help SQL Server users better understand the different join types and their …

Join Types Course Read more »

Cross DB Ownership Chaining is a feature of SQL Server that allows one database to access objects in another database, even if the two databases are owned by different users. This feature is useful in certain scenarios, such as when you need to create a stored procedure that accesses objects in multiple databases. However, Cross DB Ownership Chaining can also …

Securing SQL Server: Cross DB Ownership Chaining Read more »