Great Read on the Difficulty of Computer Security
The SANS Internet Storm Center has a great handler post about working at the Abuse department for an ISP:
Securing a...
2008-08-04
798 reads
The SANS Internet Storm Center has a great handler post about working at the Abuse department for an ISP:
Securing a...
2008-08-04
798 reads
In the current issue of Redmond magazine there's an interesting story in the Never Again column. It's titled:
Listen to the...
2008-08-02
926 reads
The network scanner Nmap has a new version out, 4.68. The GUI interface (Zenmap) which comes with the Windows installer version...
2008-08-01
576 reads
The Midlands PASS chapter is approaching two years old. We've had some great speakers from the outside like MVPs Brian...
2008-07-31
1,698 reads
It looks like Microsoft is working with Prometric to put out a different way of testing for certification. Basically, it's...
2008-07-31
1,354 reads
Speaker: Darren Herbold
Midlands PASS Chapter - August 7, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday, August 7,...
2008-07-31
1,830 reads
As a follow-up to yesterday's post, Part III of the SQL Server panel interview has been posted on-line. A name I...
2008-07-30
1,721 reads
I was asked by Odin Jobs to participate in an email interview on SQL Server. Joining me on the panel...
2008-07-29
2,010 reads
Application roles often interesting possibilities in theory. In practice? Brian explores how they work and some of the pros/cons you should consider before selecting them for use in your applications.
2008-07-25 (first published: 2003-08-27)
45,466 reads
Speaker: Darren Herbold
Midlands PASS Chapter - August 7, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday, August 7,...
2008-07-24
1,584 reads
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