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,170 reads
In this second article I provide the means to restore a binary file to its original state.
2015-05-28
11,170 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,962 reads
This article looks at two critical limitations suffered by MongoDb compared with SQL Server.
2015-03-10
462 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,703 reads
This editorial addresses the need to write the most effective and efficient code for our solutions
2015-02-02
131 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
123 reads
By James Serra
I remember a meeting where a client’s CEO leaned in and asked me, “So,...
By Brian Kelley
If you want to learn better, pause more in your learning to intentionally review.
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
Hello team Can anyone share popular azure SQL DBA certification exam code? and your...
Comments posted to this topic are about the item Faster Data Engineering with Python...
Comments posted to this topic are about the item Which Result II
I have this code in SQL Server 2022:
CREATE SCHEMA etl;
GO
CREATE TABLE etl.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT etl.product
VALUES
(2, 'Bee AI Wearable');
GO
CREATE TABLE dbo.product
(
ProductID INT,
ProductName VARCHAR(100)
);
GO
INSERT dbo.product
VALUES
(1, 'Spiral College-ruled Notebook');
GO
CREATE OR ALTER PROCEDURE etl.GettheProduct
AS
BEGIN
exec('SELECT ProductName FROM product;')
END;
GO
When I execute this code as a user whose default schema is dbo and has rights to the tables and proc, what is returned? See possible answers