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?
.sdffile as a blob, or do you want to extract the data from that file (which is a SQL Server Compact Edition database file) and store that relational data in SQL Server? – marc_s Feb 13 at 13:39.sdffile to that server machine's filesystem first - you cannot load into a remote server's database table from your local PC harddisk... – marc_s Feb 13 at 13:40