Tabular model: Not ready for prime time?
While the tabular model in SSAS makes it much easier to build cubes than the multidimensional model, I am not...
2013-11-07
22,743 reads
While the tabular model in SSAS makes it much easier to build cubes than the multidimensional model, I am not...
2013-11-07
22,743 reads
I’ve been wanting to do more with Powershell (PoSh). I’ve seen Allen White present on it for years, and I’ve...
2013-11-07
1,407 reads
Remember when you were eight years old, how exciting it was to order some of those amazing products that were...
2013-11-07
932 reads
ugggh.
My Drupal site in AWS EC2 was hijacked and is being used by the hijackers to do port scans.
Who said...
2013-11-06
603 reads
These quick tips are short and sweet. They are nothing more than an explanation and some code. If you have...
2013-11-06
514 reads
For those of you that know me, you know that I enjoy learning, and passing on what I have learned...
2013-11-06
785 reads
Today I got a database mirror case, I was told the all databases were in disconnected\in recovery status on both...
2013-11-06
1,224 reads
For those who don’t know the three physical join operators are Hash Match, Loop Join and Nested Loops. Understanding these...
2013-11-06
672 reads
On November 5th, in conjunction with MSSQLTips, I'll be giving a webinar on SQL Injection. It will be at 2...
2013-11-06 (first published: 2013-10-29)
3,735 reads
I've been to five SQL Saturdays so far and this was my first year to attend the Dallas conference. Therewere...
2013-11-06
403 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