Review - Go Anywhere With MYdbPAL
Brian Knight recently had the opportunity to look at a very unique product in the industry. MYdbPAL automates many of the tasks that database professionals perform on a day-to-day basis. Read his review here.
Brian Knight recently had the opportunity to look at a very unique product in the industry. MYdbPAL automates many of the tasks that database professionals perform on a day-to-day basis. Read his review here.
The behavior of SQL Server is influenced in many ways by the various settings and options available. This series will examine some of the ANSI options that can be set and changed in SQL Server.
Bill Wunder has donated his utility for those who have a free SQLServerCentral.com mebership. The DDL Archive Utility will look into a database and automatically archive the DDL from the database into Source Safe saving hours of hassles!
This e-seminar will discuss how Quest's performance diagnostic solutions for SQL Server can help you get the most out of your database. Learn, through real-world scenarios, how to increase database performance and ensure optimal availability of your SQL Server environment. This free e-seminar will teach you how to:
* Proactively diagnose and resolve bottlenecks
* Ensure high levels of performance and availability
* Maintain SLAs
This article shows how to use a DTS package to detect a file. After the detection of the file the processing of the file can be completed. This code in the .DONE processing section uses the Wscript.Shell command to unzip a file.
The behavior of SQL Server is influenced in many ways by the various settings and options available. This series will examine some of the ANSI options that can be set and changed in SQL Server.
Thanks to the more than 1,300 people that voted in the 2002 SQLserverCentral.com Reader's Choice Awards. Now that the voting is complete, find out who you voted to be the best SQL Server product and book.
Red Gate Software has released a new and improved version of SQL Compare, a simple $195 software tool for comparing and synchronizing SQL 7 and SQL 2000 database structure and contents.
What would you do if your SQL Server database mysteriously lost 11GB of data? Find out what happened to me. This story has a happy ending.
It's not a SQL book and the code examples are in Java, but there is a lot to like about this book. What is refactoring? How would you find it useful? Read the review to find out!
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
By HeyMo0sh
Working in DevOps long enough teaches you two universal truths: That’s exactly why I...
Hi all, I just started using VS Code to work with DB projects. I...
Comments posted to this topic are about the item Fun with JSON II
Comments posted to this topic are about the item Changing Data Types
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 t1.[key] AS row,
t2.*
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t1
CROSS APPLY OPENJSON(t1.value) t2; See possible answers