More on xp_logininfo
In this post,
I talked about using xp_logininfo in order to get the permission paths
for a particular Windows account. If you've...
2006-04-29
10,562 reads
In this post,
I talked about using xp_logininfo in order to get the permission paths
for a particular Windows account. If you've...
2006-04-29
10,562 reads
I was catching up on my blog reading and found the following post from Jamie Thomson:
SSIS: Another SP1 problem
The post...
2006-04-28
1,451 reads
There have been reports of some issues with SQL Server 2005 SP1, especially
with SQL Server Integration Services not starting as...
2006-04-27
1,620 reads
I have MVP Raymond Lewallen in my list of blogs to follow. I read with great sadness the following blog...
2006-04-26
1,462 reads
I received an email from another DBA asking how to track a user who is
probably mapping into SQL Server via...
2006-04-25
1,589 reads
A few weeks ago we had a failure on the web site. Actually a hard failure, a BSOD, which I...
2006-04-25
1,380 reads
2006-04-19
1,495 reads
A recent question on the forums asked how to determine if a database
user was a Windows user or group and...
2006-04-06
3,908 reads
I've been dealing with Kerberos delegation setup with respect to
Microsoft's CRM 3.0 product and while the process isn't difficult, if
you...
2006-04-05
2,150 reads
In writing for a tech book one of the things that happens is a copy editor looks over your work...
2006-04-04
1,446 reads
By Steve Jones
At the recent Redgate Summit in Chicago, I demo’d (lightly) the ML based Alert...
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...
I'm trying to get this string_agg to put all the 'comments' into one result...
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
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