SQLSat403 – Recap
The doors close, lights turn off, and cars begin to pull out of the parking lot. Another SQL Saturday event...
2015-08-27
628 reads
The doors close, lights turn off, and cars begin to pull out of the parking lot. Another SQL Saturday event...
2015-08-27
628 reads
Anyone working with SSIS and Excel probably had the following issue: you are creating an SSIS package using an Excel...
2015-08-27
767 reads
It was entertaining to listen to a technical wizard fighting the obsession with waiting to eat chocolate with 3k viewers...
2015-08-27
322 reads
Entity Sync Relationship is a new feature in Master Data Services 2016. It enables you to share entity data between...
2015-08-27
1,497 reads
It was entertaining to listen to a technical wizard fighting the obsession with waiting to eat chocolate with 3k viewers...
2015-08-27
207 reads
The use of SpaceUsed property of the FILEPROPERTY function gives how much space is used also we can derive lot...
2015-08-26
1,004 reads
As I noted in my first post, I am not a fan of scripting. In that post we set up...
2015-08-26
903 reads
If you are one of the lucky ones who gets to attend VMworld USA this year, and you have any...
2015-08-26
631 reads
Compliance training, never a fun topic and I think that is too bad. A combination of companies checking the box,...
2015-08-26
717 reads
What is the real problem with the AshleyMadison data breach? Well, let...
The post The Problem With AshleyMadison appeared first on...
2015-08-26
599 reads
By ReviewMyDB
My T-SQL Tuesday #202 entry for Marlon Ribunal's invitation on memorable SQL Server outages....
A RAG pipeline that answers questions in the demo is not the same thing...
By Steve Jones
“A multitude of bad ideas is necessary for one good idea” – from Excellent...
Telp/Wa 62 821-8200-233 Jl. Raya Cilandak KKO No.9, RT.1/RW.5, Ragunan, Ps. Minggu, Kota Jakarta...
Telp/Wa 62 821-8200-203 Gedung Perkantoran Hijau Arkadia, Tower C - Ground Floor, unit C103,...
Telp/Wa 62 821-8200-174 Menara Karya, Jl. H. R. Rasuna Said Ground floor, RT.1/RW.2, Kuningan,...
Which number will the COUNT() return after executing the following statements:
DROP TABLE IF EXISTS #test; CREATE TABLE #test (id INT) INSERT INTO #test (id) SELECT * FROM GENERATE_SERIES(1, 3) AS gs ; ALTER TABLE #test ADD flag BIT CONSTRAINT DF_#test_flag DEFAULT 0; go UPDATE #test SET flag = 0 WHERE id = 1 UPDATE #test SET flag = 1 WHERE id = 2 INSERT INTO #test (id) VALUES (4) SELECT COUNT(*) FROM #test AS t WHERE flag = 0See possible answers