COM+ Application Guidelines for Visual Basic Development
This 80-page reference article presents guidelines for designing, building, and deploying COM+ applications, with an emphasis on Visual Basic.
This 80-page reference article presents guidelines for designing, building, and deploying COM+ applications, with an emphasis on Visual Basic.
SQL-DMO is a pretty cool way of working with SQL Server. Never tried it? Sean Burke offers a very readable introduction to how it works.
Last week's tip created quite a discussion on different techniques for returning a subset of a recordset.
Here are a few of the alternative solutions offered.
Early in September Andy posted an article that explained how to use DMO to reattach a lot of MDF's in a hurry AND challenged our readers to accomplish the same task in T-SQL. Today we announce the winning solution!
This is an update to a recent article that provides a step-by-step guide to clustering SQL Server 2000 and Windows 2000.
Pre-sliced peanut butter is on its way to U.S. store shelves in test markets - fact or fiction??
Download the source code today for a great method for SQL Server live monitoring.
If you are like me, you probably get lots of telemarketing calls. Here's a good one to use the next time you get called by a phone company.
This article examines some of the undocumented stored procedures that exist in SQL Server 7.0
A look at files and filegroups in SQL Server 7.0, including some optimization tips.
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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