SQL Saturday #318 - Orlando
This is Orlando's 8th SQLSaturday and this year will be better than ever with more than 50 different speakers giving over 50 presentations - all for FREE. Sept 27, 2014.
2014-09-26
7,599 reads
This is Orlando's 8th SQLSaturday and this year will be better than ever with more than 50 different speakers giving over 50 presentations - all for FREE. Sept 27, 2014.
2014-09-26
7,599 reads
A free, one day training event taking place on October 16, 2010 in Orlando, FL.
2010-09-15
1,426 reads
A free one day training event from SQL Saturday and the Pensacola SQL Server groups. Come join Steve Jones and Brad McGehee if you are in the area on Jun 5, 2010.
2010-05-28 (first published: 2010-05-10)
2,335 reads
If you are in the Redmond, WA area, join in for a free day of SQL Server training on June 12, 2010.
2010-06-03 (first published: 2010-04-28)
1,244 reads
Come attend this great one day free event on the Florida coast on May 8, 2010. There are a number of great speakers that make this worth attending.
2010-05-05 (first published: 2010-04-20)
2,639 reads
Quite a few new SQL Saturday events were announced recently in Louisville, Phoenix, and Raleigh.
2010-04-19
891 reads
If you want to speak at this June 26 event, submit a session now.
2010-04-22 (first published: 2010-04-09)
1,394 reads
If you want to speak at SQL Saturday #38 in Jacksonville, FL on May 8, 2010, there's still time to submit a session.
2010-04-13 (first published: 2010-04-05)
1,468 reads
If you'll be near Atlanta on Apr 24, 2010, come to SQL Saturday #41. If you are at all interested in speaking, submit a session.
2010-03-17 (first published: 2010-03-11)
1,614 reads
A free one day training event from SQL Saturday and the Birmingham SQL Server groups. Come join us if you are in the area.
2010-03-24 (first published: 2010-02-18)
3,212 reads
By Steve Jones
Superheroes and saints never make art. Only imperfect beings can make art because art...
One feature that I have been waiting for years! The new announcement around optimize...
Following on from my last post about Getting Started With KubeVirt & SQL Server,...
Comments posted to this topic are about the item The AI Bubble and the...
Hi, in a simple oledb source->derived column->oledb destination data flow, 2 of my...
hi, i noticed the sqlhealth extended event is on by default , and it...
I am currently working with Sql Server 2022 and AdventureWorks database. First of all, let's set the "Read Committed Snapshot" to ON:
use master; go alter database AdventureWorks set read_committed_snapshot on with no_wait; goThen, from Session 1, I execute the following code:
--Session 1 use AdventureWorks; go create table ##t1 (id int, f1 varchar(10)); go insert into ##t1 values (1, 'A');From another session, called Session 2, I open a transaction and execute the following update:
--Session 2 use AdventureWorks; go begin tran; update ##t1 set f1 = 'B' where id = 1;Now, going back to Session 1, what happens if I execute this statement?
--Session 1 select f1 from ##t1 where id = 1;See possible answers