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,120 reads
In this second article I provide the means to restore a binary file to its original state.
2015-05-28
11,120 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
16,900 reads
This article looks at two critical limitations suffered by MongoDb compared with SQL Server.
2015-03-10
454 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,696 reads
This editorial addresses the need to write the most effective and efficient code for our solutions
2015-02-02
127 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
121 reads
By Steve Jones
This value is something that I still hear today: our best work is done...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers