New Version of Apex SQL Edit released
Looked over at the Apex SQL site and noticed they released a new
version of ApexSQL Edit last weekend. I went...
2005-11-26
1,510 reads
Looked over at the Apex SQL site and noticed they released a new
version of ApexSQL Edit last weekend. I went...
2005-11-26
1,510 reads
In writing an article for SQL Server Standard's January issue, I received a tech edit comment from Adam Machanic
about a...
2005-11-25
1,496 reads
Visual Studio has spoiled me. I love the Intellisense feature that has continued to evolve with each new edition of Microsoft's...
2005-11-25
1,535 reads
Writing at article for SQL Server Central tends to be a very rewarding
experience. Every chance I get, I encourage others...
2005-11-25
1,491 reads
The following announcement came out this morning on the Annouce mailing list for MySQL:
"MySQL Connector/Net 1.0.7, a new version of...
2005-11-21
1,641 reads
David Litchfield has put out a brief (as
he says it, "It's called a brief because there's enough meat to make...
2005-11-19
1,403 reads
There has been some talk on Google Base on the Full Disclosure security
list. I've also seen on another blog about...
2005-11-19
1,394 reads
Catching back up on things. MySQL 5.0 went "RTM" at the end of October.
Haven't had a lot of chances to...
2005-11-19
1,375 reads
For those who use Perl and access SQL Server, MVP Erland Sommarskog has
announced a new module which uses OLE DB...
2005-11-19
1,532 reads
The release candidate for MySQL 5.0 is out. This little database is really growing up.
http://www.mysql.com/news-and-events/news/article_959.html
2005-09-27
1,377 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...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
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