DLP Technology
Steve Jones isn't talking about his new television, but rather a new technology dealing with data and databases.
Steve Jones isn't talking about his new television, but rather a new technology dealing with data and databases.
There is a new data type in SQL Server 2008 that might help you deal with all those music, image, and other media files in SQL Server. FILESTREAM allows you to store these files in the file system, but access them from within SQL Server. New author Deepa Gheewala brings us a look at setting a table for FILESTREAM.
Is it possible to change the default directory for backups, so it does not need to be specified each time I run a backup?
It is a simple routine that we all need to use occasionally; parsing a delimited list of strings in TSQL. In a perfect relational world, it isn't necessary, but real-world data often comes in a form that requires one of the surprising variety of routines that Anith Sen describes, along with sage advice about their use.
The myth of Prometheus has some relevance to technology workers. How? Read what Steve Jones thinks.
The myth of Prometheus has some relevance to technology workers. How? Read what Steve Jones thinks.
The myth of Prometheus has some relevance to technology workers. How? Read what Steve Jones thinks.
This video shows how you can use Management Studio to execute your Integration Services packages.
Books online mentions that performance may be reduced when using database snapshots. I decided to investigate how severe that reduction could be.
Steve Jones isn't talking about his new television, but rather a new technology dealing with data and databases.
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers