Retrieving a Binary File from Your Database
In this second article I provide the means to restore a binary file to its original state.
2015-05-28
11,186 reads
In this second article I provide the means to restore a binary file to its original state.
2015-05-28
11,186 reads
In this article you will see how to convert a file to a binary stream and insert it into SQL Server with SQLCLR.
2015-05-26
17,035 reads
This article looks at two critical limitations suffered by MongoDb compared with SQL Server.
2015-03-10
465 reads
We frequently need to discover the source of issues with our databases. This article provides information on how to detect replication on a database as a possible source of issues.
2015-03-02
3,708 reads
This editorial addresses the need to write the most effective and efficient code for our solutions
2015-02-02
132 reads
We have all had our innovative solutions and proposals shot down by leads, managers and directors. This article addresses some of the causes and tips to improving the success rate for getting your ideas into the priority list.
2014-12-05
125 reads
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...
Comments posted to this topic are about the item The Dangers of Dependencies
Comments posted to this topic are about the item Creating a JSON Document III
Comments posted to this topic are about the item Stairway to Reliable Database Deployments...
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