Installing Ubuntu in Level 1 of the Stairway to SQL Server on Linux
In this first article of the Stairway to SQL Server on Linux, learn how to set up your host server.
2021-10-13 (first published: 2018-08-15)
5,784 reads
In this first article of the Stairway to SQL Server on Linux, learn how to set up your host server.
2021-10-13 (first published: 2018-08-15)
5,784 reads
In this level of the Stairway to Linux, learn how to use the TIG stack to monitor your SQL Server instance on Linux.
2020-05-27
2,117 reads
In this level of the Stairway to SQL Server on Linux, we learn how to set up and use SQL Agent.
2019-08-06
1,643 reads
In the next level of the Stairway to SQL Server on Linux learn about the client tools available to connect to your instance.
2019-03-13
1,239 reads
In this level we examine how to add disks to separate our data, log, and tempdb files.
2018-12-05
2,168 reads
In this next level, we learn how to install SQL Server on Linux and verify that everything is working.
2018-10-17
1,651 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