PASS Summit 2012 - Done!!!
Thursday afternoon
Thursday afternoon concluded with How to run SSRS in Sharepoint integration mode, Enriching Tabular with DAX and Monitoring SSAS....
2012-11-23 (first published: 2012-11-13)
1,187 reads
Thursday afternoon
Thursday afternoon concluded with How to run SSRS in Sharepoint integration mode, Enriching Tabular with DAX and Monitoring SSAS....
2012-11-23 (first published: 2012-11-13)
1,187 reads
WIT – Women In Technology 10 anniversary PASS Summit Luncheon
Please go to this link for more info on the speakers and...
2012-11-08
886 reads
Using SSIS 2012 for ETL in a Data Warehouse
Well, I feel great relief that my session has been completed, and...
2012-11-08
705 reads
Morning
Could not sleep past 4:30AM this morning, daylight savings time and 2 time zone changes did not help. So, exercise...
2012-11-05
680 reads
Using SSIS 2012 for Data Warehouse ETL
I have been fortunate to be selected this year to speak at the PASS...
2012-11-01
1,040 reads
I received an email from my boss on the morning supervisors approve timesheets. He stated that they are complaining about...
2012-10-14
2,065 reads
The PASS Data Architecture Virtual Chapter will host part II of Designing for Common Problems in SQL Server by Dr....
2012-10-09
598 reads
The Virtual Chapters of PASS are asked to host sessions during this Fall’s 24 Hours of PASS preview for the...
2012-09-18
999 reads
There are 2 suggestions I hear about when performance tuning the Lookup transformation on a large dimension table when getting...
2012-08-28
9,113 reads
If you do not know by now, PASS has many virtual chapters that give free webcasts all month long. I...
2012-08-19
772 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