RC0 and HierarchyID
I gave a presentation Tuesday to my local SQL user group on 2008 T-SQL and data types. One of the items...
2008-06-13
767 reads
I gave a presentation Tuesday to my local SQL user group on 2008 T-SQL and data types. One of the items...
2008-06-13
767 reads
I have been thinking about getting the MCT credential for about five years. During the MVP Summit I attended a...
2008-05-30
1,305 reads
Using cursors is a controversal topic. As a former developer, that is the way I thought about processing data at one...
2008-04-25
1,403 reads
As I thought might happen, I was too busy after Tuesday and Wednesday to report in. Tuesday was my first trip...
2008-04-17
433 reads
I'm sure that Monday was the most relaxed day that we will have this week. The conference did not start until...
2008-04-15
597 reads
I arrived Sunday in Seattle from St. Louis for the MVP Global Summit. The shuttle from the airport was filled...
2008-04-14
425 reads
I made the decision today to start using SQL Server 2008 Management Studio at work to manage my 2000 and...
2008-04-08
815 reads
Yesterday I found out that I am a new SQL Server MVP. I still have the feeling that I am...
2008-04-02
383 reads
I am here in sunny Orlando at End to End Training. I am very impressed with the new training facility....
2008-03-31
1,377 reads
Over the last three years, since that first article I submitted to SQLServerCentral, I find myself getting involved in more...
2008-03-21
1,301 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 Jl. Paus No.81, RT.1/RW.8, Wil, Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus...
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