Is Your SQL Server Secure?
SQL Server is a popular database management system that is widely used to store and manage data in a variety of applications. As with any… Read More »Is Your SQL Server Secure?
SQL Server is a popular database management system that is widely used to store and manage data in a variety of applications. As with any… Read More »Is Your SQL Server Secure?
Sometimes it’s hard to explain the value of something through written word so we filmed Steve to explain our Managed Services. Don’t be shy, contact… Read More »Our Managed Services Video Explanation
The SA (System Administrator) account is a predefined account in SQL Server that has full control over the database server. By default, the SA account… Read More »Securing SQL Server: Renaming and Disabling the SA Account
Each month we report on the most common waits that we see reported by our daily monitoring customers. All the data is sanitized, so there… Read More »Common Waits Reported by Daily Monitoring This Month
In SQL, a LEFT OUTER JOIN is a type of JOIN operation that combines data from two tables, based on a JOIN condition. This type… Read More »Left Outer Join (Left Join)
One of the key tasks of a database administrator is to ensure that the SQL Server database is running efficiently and effectively. One way to… Read More »SQL Performance – Finding total elapsed time
To rename a table in SQL Server, you can use the sp_rename system stored procedure. This stored procedure allows you to change the name of… Read More »Renaming a Table in SQL Server
A left outer join with exclusion is a variation of the standard left outer join used to find rows from the left table that do… Read More »Left Outer JOIN with Exclusion
A common table expression, also known as a CTE, is a temporary named result set in SQL that can be used within a SELECT, INSERT,… Read More »Common Table Expressions
Inner Join versus Outer Join, A SQL Server inner join is a type of join that combines records from two or more tables in a… Read More »Inner Join versus Outer Join