Imposter or Student
We all need to learn and tackle new technology in our career. When we do so, are we impostors or students?
2021-03-12
151 reads
We all need to learn and tackle new technology in our career. When we do so, are we impostors or students?
2021-03-12
151 reads
Many organizations will change their teams around over time, but not all do this regularly. Steve talks about how Redgate does this every year.
2021-02-24
96 reads
2021-02-22
195 reads
2021-02-16
5,264 reads
If you have set any new goals for your career this year, Steve is asking you to let him know.
2021-01-08
113 reads
2020-12-29
254 reads
Today Steve looks at the career paths that might, or might not, exist inside an organization.
2020-12-28
248 reads
There are plenty of opportunities to grow your career by sharing knowledge. Steve points out a few today.
2020-12-17
142 reads
Today is a day for reflections in Steve's life, looking back at the incredible year of 2020.
2020-12-11
108 reads
The annual Advent of Code challenge is underway, and you can use it to help grow your career.
2020-12-08
231 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