Second Presentation – Lessons Learned
Since my presentation at Orlando SQL Saturday seemed to go well (standing room only, all positive feedback) I submitted to...
2013-11-11
516 reads
Since my presentation at Orlando SQL Saturday seemed to go well (standing room only, all positive feedback) I submitted to...
2013-11-11
516 reads
These are a couple of stored procedures I wrote to help me with security research. Each sp returns three data...
2013-11-11 (first published: 2013-11-04)
1,853 reads
From my last post, http://coffeeandsql.com/2013/11/10/70-457-reviewer-15-implement-database-mirroring/, you were able to successfully setup a database mirroring. For further monitoring and checking if...
2013-11-11
1,063 reads
Tonight I’ll be talking again with my children about Veteran’s Day, what it means to me, and what I hope...
2013-11-11
494 reads
This lesson covers managing security principals at the instance level. Security principals at this level allows access to the instance...
2013-11-10
621 reads
This lesson is part two of lesson Reviewer #13 Managing SQL Server Logins. There is so much to cover about...
2013-11-10
422 reads
This reviewer is part of lesson in Implementing High Availability in SQL Server 2012. This covers about 12% of the...
2013-11-10
546 reads
When we are learning MDX, we unavoidably have to deal with the tools we use. Adding confusions about the behaviors...
2013-11-10
3,042 reads
Several Situation will cause the log shipping restore job failed on secondary server
1. Restore job is not able to access the...
2013-11-09
11,273 reads
1. How to connect client to a Database Mirroring Session with failover aware
A: add FailoverPartner keyword in the connection string,...
2013-11-08
13,907 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