Running and Scheduling SSIS Packages
In this presentation, Brian shows you how to run a SSIS package outside the designer environment using DTExec.exe and DTExecUI.exe. He also shows you how to schedule an SSIS package using SQL Server Agent.
In this presentation, Brian shows you how to run a SSIS package outside the designer environment using DTExec.exe and DTExecUI.exe. He also shows you how to schedule an SSIS package using SQL Server Agent.
Retrieving the identity value from an inserted row should be a very simple task. But based on his survey at TechEd 2005 as well as some recent interviews, Andy Warren points out some of the wrong answers and turmoils he has faced in getting this question answered.
Damon Armstrong learned the hard way about the consequences of not having a clearly defined project scope or work contract
The SQL Server memory manager is one of the more complicated parts of SQL Server and we had the chance recently to talk to the person that ensures it runs as smoothly as possible. Get to know the man behind the SQLOS.
SQL Server 2000 and 2005 do not include much in the way of financial functions, but there are many sources for the formulas for financial calculations. In this tip, I present the present value (PV) and future value (FV) functions, both of which are scalar UDFs.
In this video, Kathi continues her T-SQL series and exands how to use the WHERE clause.
We've moved the subscriptions for the SQL Server Standard to it's own site and just completed the November issue. Read on for how to access your subscriptions or subscribe today.
This is the last week to register for the PASS 2006 Summmit in Seattle and save $300. Read on about what you'll be missing if you don't get up there.
The definitively "hands-on" guide to handling dates and times in SQL Server
Data warehousing is becoming more and more popular, especially as companies seek to leverage the information stored in various systems to improve their business processes. Warehousing expert Vincent Rainardi brings us the next installment of his series on data warehousing, examining the issues of loading data.
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