SSIS Denali Resolve References
One of the new features in SSIS Denali that I’m really excited about (Other than the ability to Undo ctrl-z)...
2010-11-15
1,406 reads
One of the new features in SSIS Denali that I’m really excited about (Other than the ability to Undo ctrl-z)...
2010-11-15
1,406 reads
The votes have all been tabulated and during PASS this week the top pre conference seminars were announced for SQL Rally.Thankfully...
2010-11-12
508 reads
The end has come! We've been told for several years the vNext of SQL Server will no longer support DTS...
2010-11-11
3,501 reads
Picked up this nice script from a client last week. Use this script below to create a Date Dimension for...
2010-11-08
1,133 reads
In a post a while back I wrote about how you can create conditional color formatting on the Analysis Services...
2010-11-04
2,943 reads
Pre Conference seminar voting is up now. Go make it happen! Here's the description of our session:
Title:
Business Intelligence Workshop
Speaker:Patrick LeBlanc,...
2010-10-26
918 reads
Okay SQL Community, I need your help! Patrick Leblanc, Adam Jorgensen, Mike Davis and myself have submitted a precon for...
2010-10-23
564 reads
Tuesday at 12:30 pm I will be presenting for SQL Lunch giving you an overview of some common DAX Expressions...
2010-10-22
999 reads
Recently I inherited a set of SSIS packages that did a pretty simple calculation for age.It used the following expression,...
2010-10-09
1,383 reads
Often when designing a Reporting Services with parameters you
may be required to display those parameter values on your report.This is...
2010-10-08
4,196 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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