Schema Security
This week Steve is wondering about the use of schemas for security or other purposes.
This week Steve is wondering about the use of schemas for security or other purposes.
In this tip we will show how Power BI works and how to create a simple report from scratch and the options available for creating reports.
Complete list of useful and must have add-ins for SQL Server Management Studio - 34 SSMS add-ins
This article is a complete list of all SQL Server trace flags - 593 trace flags.
Organizations may have many concerns about performance when migrating databases to Azure. Fortunately, Microsoft provides some great tools to help improve performance and save money. In this article, Monica Rathbun explains how to take advantage of these features.
Today Steve gives reasons why he thinks the RDBMS is often better than a NoSQL database of any sort.
In this tip we look at a PowerShell script that can be used to compare actual files that exist against a list of files that should exist for a project to identify any missing files.
Data warehouses and lakes are often loaded from other data, so should they be immutable?
Sometimes performance is more important than exact accuracy. Learn how to get an approximate count in SQL Server with better performance.
By Steve Jones
los vidados – n. the half-remembered acquaintances you knew years ago, who you might...
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
Comments posted to this topic are about the item Vectors in SQL Server 2025
Comments posted to this topic are about the item Odd Sequences
Comments posted to this topic are about the item Everything is the right question...
What values are returned from this code?
CREATE SEQUENCE NumericSequence
AS NUMERIC(5,1)
START WITH 1.0
INCREMENT BY 0.1;
GO
SELECT NEXT VALUE FOR NumericSequence
GO
SELECT NEXT VALUE FOR NumericSequence
GO See possible answers