Deploy from VCS
Are you brave enough to redeploy your applications from a VCS? Have you really captured all your code?
2015-08-10
95 reads
Are you brave enough to redeploy your applications from a VCS? Have you really captured all your code?
2015-08-10
95 reads
2015-08-10
127 reads
This week Steve Jones wants to know about your efforts to create bonds with co-workers and build a team. Does your company do anything to help facilitate this?
2015-08-07
123 reads
2015-08-06
259 reads
I was playing around with some XML lately, and had to load a file that looked like this::
I ran a...
2015-08-06
1,646 reads
This year’s PASS Summit will end on Oct 30, which is just before Halloween in the US. I’m sure lots...
2015-08-05 (first published: 2015-07-29)
1,913 reads
The cloud is always going to be a challenge for security, but is it harder or easier than on premises? Steve Jones has a few comments.
2015-08-04
149 reads
2015-08-03
249 reads
I ran into a question recently about how to clear out a database of all objects. I assume someone was...
2015-08-03
1,256 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2015-08-03
4,107 reads
How I used AI for this postChatGPT to generate images based on info specifically...
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...
Hello everyone, Last week we performed an upgrade of our SQL Server instance, moving...
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...
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