2020-07-09
108 reads
2020-07-09
108 reads
2020-07-09
406 reads
SQL Server 2019 in containers are a fast way to get started with SQL Server 2019, and can be used throughout your data estate from development to production.
2020-05-21
Learn how to perform data filtering in Oracle Linux using a database link to SQL Server
2020-04-13
2,447 reads
Steve Jones highlights the importance he sees for data professionals in the containerization of software.
2020-03-11
298 reads
Learn how to set up Polybase in containers to access an Oracle database.
2020-01-09
5,233 reads
Kubernetes is a technology Steve thinks will be important in the future and knowing a bit more about it can be important for your career.
2019-10-23
277 reads
2019-10-18
539 reads
2019-08-05
714 reads
In this article, see one of the ways in which a container can be created and used for in SSRS as the source for reports.
2019-07-30
3,615 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...
Telp/Wa 62 821-8200-233 Jl. Raya Cilandak KKO No.9, RT.1/RW.5, Ragunan, Ps. Minggu, Kota Jakarta...
Telp/Wa 62 821-8200-203 Gedung Perkantoran Hijau Arkadia, Tower C - Ground Floor, unit C103,...
Telp/Wa 62 821-8200-174 Menara Karya, Jl. H. R. Rasuna Said Ground floor, RT.1/RW.2, Kuningan,...
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