I tried using blob:
INSERT INTO [dbo].[ProbaImage](Id, Podatak)
SELECT
1,*
FROM
OPENROWSET(BULK N'C:\Users\Desktop\AUTOTROLEJ.sdf', SINGLE_BLOB) AS Podatak
GO
But it doesn't work, it gives me the error that cannot read this file. I find out about file tables into SQL Server 2012, but I don't know how to use them.
Can someone suggest me a method to insert this .sdf
file?