Designing for the Public
The way that governments build software and work with data must change if we want to be more efficient.
2016-08-18
64 reads
The way that governments build software and work with data must change if we want to be more efficient.
2016-08-18
64 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-08-18
636 reads
2016-08-17
1,258 reads
2016-08-16
126 reads
This past weekend was the first SQL Saturday in San Antonio, TX. I was lucky enough to get the chance...
2016-08-15
559 reads
2016-08-15
97 reads
I’m truly stunned at the responses I received to my post asking how far people have traveled for a SQL...
2016-08-12 (first published: 2016-08-03)
1,424 reads
Learn a few techniques for executing multiple sets of queries at once.
2016-08-11
6,487 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-08-11
10,994 reads
The potential vulnerabilities of wireless devices might be a security issue for databases.
2016-08-10
111 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...
Comments posted to this topic are about the item Adding new column with DEFAULT
I've got a web application for my side business. I've added a SQL Server...
Comments posted to this topic are about the item Looking for New Blood
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