Better Test Data Domains with SQL Data Generator
I’ve been working more with SQL Data Generator (SDG) because it solves some problems that many software developers have with...
2015-09-01
918 reads
I’ve been working more with SQL Data Generator (SDG) because it solves some problems that many software developers have with...
2015-09-01
918 reads
It seems the software industry doesn't do a good job of planning and estimating software development efforts.
2015-09-01
195 reads
2015-09-01
1,452 reads
Does it make sense to avoid FKs for use other architectures in software development? Steve Jones isn't sure a a general rule this is the case.
2015-08-31
346 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-31
1,901 reads
2015-08-28
1,571 reads
T-SQL Tuesday is a monthly blog party where we get an invitation the first week of the month to write...
2015-08-25 (first published: 2015-08-14)
2,885 reads
I ran across a question recently from someone that received a similar message to the one showed in this image:
In...
2015-08-25
1,272 reads
2015-08-25
1,460 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-24
735 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...
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