The Clustered Index is not the Primary Key
As the title says, the clustered index doesn't have to the primary key and vice versa.
2016-05-24
1,343 reads
As the title says, the clustered index doesn't have to the primary key and vice versa.
2016-05-24
1,343 reads
Dealing with SQL Server security when the application it uses is full of security holes.
2016-05-23
190 reads
There has never been more reasons or better opportunities to learn new skills. Gail Shaw shares her favorite online video training resources sites, what's on her current learning list and why.
2016-05-23
160 reads
This week Steve Jones looks at the formal way in which you might verify changes to your system. Do you have a process?
2016-05-20
222 reads
Branching code creates complexity to development and should be undertaken with caution.
2016-05-19
87 reads
Steve Jones notes that some features aren't fully developed, but that's not a reason to avoid releasing them.
2016-05-17
137 reads
The next version of SQL Server 2016 will be released on June 1, 2016, which means you can start planning those upgrades.
2016-05-16
95 reads
Adding a release management tool to your software development is a sign of maturity.
2016-05-16
62 reads
2016-05-13
74 reads
A simple change might solve some of those tempdb issues various customers experience.
2016-05-12
190 reads
By Steve Jones
I needed to test a striped backup, so I decided to ask the AI’s...
By gbargsley
In SQL Server environments where transactional replication runs alongside Always On Availability Groups (AGs),...
Disable the sa login in SQL Server (and sleep better)If you run SQL Server...
Comments posted to this topic are about the item Create an HTML Report on...
Comments posted to this topic are about the item Be Wary of Data
Comments posted to this topic are about the item Locking Hierarchies
You have a table [dbo].[orders] without a Clustered Index (Heap). The table does not have any other nonclustered indexes! You rund the following command in Read Committed Isolation Level:
SELECTo_orderdate, o_orderkey, o_custkey, o_storekey FROMdbo.orders WHEREo_orderkey = 3877;