SQL Server 2005 Books Online (April 2006)
SQL Server 2005 Books Online has been updated for SP1. The newest
version is labeled SQL Server 2005 Books Online (April...
2006-05-04
1,527 reads
SQL Server 2005 Books Online has been updated for SP1. The newest
version is labeled SQL Server 2005 Books Online (April...
2006-05-04
1,527 reads
I'm catching back up on the TechNet webcasts
I found interesting from April. Most are during the day and with
meetings and...
2006-05-01
702 reads
This question comes up enough on the forums and with SP1 for SQL Server
2005 released, I'll cover it again. You...
2006-04-30
1,611 reads
This study out of the University of Illinois at Urbana-Champaign sounds great:
Software Allows Neighbors To Improve Internet Access At No...
2006-04-30
1,594 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,566 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,631 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,470 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 recent question on the forums asked how to determine if a database
user was a Windows user or group and...
2006-04-06
3,919 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WA:08218154393 Grand Comal Residence, Jl. Raya Ahmad Yani No.20 Blok EA A19, Dusun II,...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers