How To Save File to varbinary(max) in SQL 2005

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • quartrj
    New Member
    • Jul 2008
    • 1

    How To Save File to varbinary(max) in SQL 2005

    For number of security reasons I can't use the Openrowset - Bulk option does any know of another way to load files into this data type.
  • ck9663
    Recognized Expert Specialist
    • Jun 2007
    • 2878

    #2
    Can you use BULK INSERT?

    Use Bulk Insert and store it in a table. Manipulate that table to store to a varbinary(max).

    -- CK

    Comment

    Working...