Most voted "varbinary" questions
SQL Server’s "varbinary" data type is declared with a length specification in the CREATE TABLE statement.
Learn more…5 questions
Sort by count of
-
4
votes3
answers882
viewsHow to insert an extended value into a table in a varbinary column?
A table has a varbinary(max) column, I need it to have a 400MB input of data in this column. How I create this data? The Insert statement has to have the data in full or I can use a loop or a…
-
4
votes2
answers1819
viewsLogin using Entity with password encrypted as varbinary
I did the user password encryption and in the Password field of my table I went from Varchar to Varbinary, in the web part of my system it is all right only that in the windows part I am using the…
-
3
votes1
answer147
viewsWhy does the binary conversion of SQL Server not return a binary value?
Why when I use the following command in SQL Server 2005 select convert(varbinary(16),N'123') returns 0x310032003300 and not 1111011 that would be the binary value?…
-
1
votes0
answers57
viewsExtract database file (varbinary) and use it on the web
I have files saved in a column of my bank (SQLSERVER) of the kind varbinary and accurate recover those files saved in that column and show-los in a modal or lower-los; however, I need to do this…
-
0
votes2
answers657
viewsSave Image in VARBINARY with C# ASP.NET
How do I get a received image in a Form HTML and write to the bank in VARBINARY with C#? I’m using C# ASP.NET MVC5 CORE.