An Introduction to RLS Security Policies: Level 3 of the Stairway to Row-Level Security
An introduction to how security policies work for RLS.
2019-01-30
9,104 reads
An introduction to how security policies work for RLS.
2019-01-30
9,104 reads
2019-01-30
3,091 reads
Next week is my webinar on why the database is the heart of DevOps. You can still register today to...
2019-01-30
753 reads
2019-01-30
604 reads
2019-01-29
115 reads
2019-01-29
583 reads
As part of my learning goals for 2018, I wanted to work through various books. This is part of my...
2019-01-28
857 reads
2019-01-28
126 reads
2019-01-28
580 reads
Disaster recovery is one of those situations that we plan for and hope we never experience. Are you prepared?
2019-01-25
49 reads
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