Questions tagged [varbinary]
3 questions
4
votes
3 answers
Uploading a file to a varbinary on SQL Server
Is there any way to upload a file to a varbinary on SQL Server without writting a program to do it?

Pablo Fernandez
- 7,438
- 25
- 71
- 83
1
vote
3 answers
OPENROWSET, binary files, varchars and varbinaries
I'm trying to upload a binary file into SQL Server, into a varbinary field. I've came up with this query to do it:
INSERT INTO Files(File, Name)
SELECT
"file.bin" AS Name
* FROM OPENROWSET(BULK 'C:\file.bin', SINGLE_BLOB) AS File
GO
but I'm…

Pablo Fernandez
- 7,438
- 25
- 71
- 83
0
votes
0 answers
Why sql server send varbinary big data to application so slow?
I have 2 server :
Database Server
Application Server
and client pc.
On Database server using ms sql server i save data file in varbinary(max).
On Application server using c# linq to sql i query select top 1 file from database server. It takes too…

yozawiratama
- 101
- 3