Auditing Needs Reporting
No matter the mechanism used to capture the data to fulfill the "investigation" phase of the audit, if the data is not analyzed and reports generated, then the audit...
2015-10-13
8 reads
No matter the mechanism used to capture the data to fulfill the "investigation" phase of the audit, if the data is not analyzed and reports generated, then the audit...
2015-10-13
8 reads
Welcome to the second Tuesday of the month. And in the database world of SQL Server and the SQL Server...
2015-10-13
693 reads
Thank you to everyone that attended my Power BI webinar last month, September 29th. Sorry its taken me a while...
2015-10-13
286 reads
Thank you to everyone that attended my Power BI webinar last month, September 29th. Sorry its taken me a while...
2015-10-13
552 reads
Have you ever wondered if that black box in your datacenter called the network is performing as well as it...
2015-10-13
917 reads
To All-
I am truly grateful I have been selected for this unique contest: http://www.dcac.co/your-pass-speaker-idol-2015-top-12-are
Good luck to all of my fellow...
2015-10-13
375 reads
For many years I didn’t really think about the implications of how I was retrieving data from my SQL Servers...
2015-10-13
16,056 reads
My enthusiasm for analyzing stock market data using Power BI – even after publishing two posts recently (this and this) – is at...
2015-10-13
557 reads
The event_file target is an asynchronous consumer for Extended Events. This target stores the received payload in a proprietary binary format. Because of this, one needs to use the...
2015-10-13
46 reads
Having covered the metadata for a deployed session from just about every angle (yes there is more on metadata that could...
2015-10-13
946 reads
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...
Yesterday I gave a talk for MSSQLTips called “Building a DBA Agent for Your...
ALAMAT : Jl. Raya Tumpang No.1, Ledoksari, Tumpang, Kec. Tumpang, Kabupaten Malang, Jawa Timur...
ALAMAT : Jl. Jend. Yani Jl.Pahlawan No.99, Ardirejo, Kepanjen, Kec. Kepanjen, Kabupaten Malang, Jawa...
Comments posted to this topic are about the item Adding new column with DEFAULT
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