Protection Close To Home
For the Friday Poll this week, Steve Jones is wondering what type of data protection you use at home for your information. Especially those all important family photos.
For the Friday Poll this week, Steve Jones is wondering what type of data protection you use at home for your information. Especially those all important family photos.
I read Jack Corbett's blog entry,No Training Budget Still No Excuse, last week and thought it was excellent. In fact,...
There are new types of databases being deployed in the world. Steve Jones says that DBAs need to be aware of the changing technologies.
I/O I/O - It's why my server's slow.....
Often I've been curious about ways to measure the performance of SQL Server, and...
Part three of this series illustrates how to use a T-SQL script to create database mirroring between a principal and mirrored server.
A main function of SQL Server Integration Service is to move data into and out of SQL Server. The external data source can exist in almost any format, including a plain text file. This article focuses on importing a text file into a standard SQL Server database table.
There are new types of databases being deployed in the world. Steve Jones says that DBAs need to be aware of the changing technologies.
There are new types of databases being deployed in the world. Steve Jones says that DBAs need to be aware of the changing technologies.
There are new types of databases being deployed in the world. Steve Jones says that DBAs need to be aware of the changing technologies.
An in-depth analysis on how to store IPv4 addresses to achieve maximum efficiency and performance in both storage and queries
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
By James Serra
Model Context Protocol, or MCP, is one of those technical ideas that sounds more...
When starting with AWS RDS Aurora for managing relational databases in the cloud, many...
BCA KCP Pasar Minggu Center Hub.0853•5504•2311 Jl. Lenteng Agung Raya No.26 E-F, Ps. Minggu,...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers