File upload into sql server database

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • RamamurthySodimalla
    New Member
    • Aug 2007
    • 2

    #1

    File upload into sql server database

    Hi,
    All

    Please guide me , how to upload a file into Sql server database using Jsp page.

    Thanks in Advance
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by RamamurthySodim alla
    Hi,
    All

    Please guide me , how to upload a file into Sql server database using Jsp page.

    Thanks in Advance
    Have a look at the bulk insert command (You'll probably need to search SQL server resources rather than Java resources for it). Something like

    [CODE=sql]BULK INSERT tableName
    FROM 'filePath'
    WITH
    (
    FIELDTERMINATOR = ...
    ROWTERMINATOR = ...
    ) [/CODE]

    Comment

    Working...