Free SQL Server Training for the Week of July 26, 2010
Tuesday
Pragmatic Works - SSIS Management for the DBA - 11 AM EDT - Brian Knight
PASS Application Development VC - The Benefits of SQL Azure...
2010-07-23
812 reads
Tuesday
Pragmatic Works - SSIS Management for the DBA - 11 AM EDT - Brian Knight
PASS Application Development VC - The Benefits of SQL Azure...
2010-07-23
812 reads
And it is well worth the upgrade. I recently had the opportunity to interview David Flynn CEO of Fusion-IO and...
2010-07-23
1,094 reads
The Boy Scouts have “Be Prepared” as their motto and, while I was never a scout, I think it’s always...
2010-07-23
325 reads
I recently had the opportunity to do two presentation on SQL Server R2 for the DBA. In the first session...
2010-07-23
533 reads
One of the new products that Red Gate Software has released recently is SQL Source Control. I saw a demo...
2010-07-23
1,481 reads
Nice to see most of you have managed to fight your way through the shoggoths outside to attend another lecture...
2010-07-23
878 reads
Kendal posted the announcement yesterday that we opened the design content on 99designs. I’ve used the site before and it’s...
2010-07-23
573 reads
I have a few people ask about this recently, so I thought I’d blog about it, and maybe get an...
2010-07-23
1,000 reads
Its been a busy week this week. From troubleshooting several production issues to writing some incremental load SSIS scripts, the...
2010-07-23
519 reads
Last night (July 21, 2010) I had the honor of being a speaker at the Baton Rouge .Net User Group. ...
2010-07-22
810 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. Matraman Raya No.14-16, RT.2/RW.1, Kb. Manggis, Kec. Matraman, Kota Jakarta Timur, Daerah...
WA:08218154393 Jl. HOS Cokro Aminoto No.56-58, Muka, Kec. Cianjur, Kabupaten Cianjur, Jawa Barat 43215
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