i need to insert multiple images in sql .table columns are name and image .
INSERT INTO images SELECT * FROM OPENROWSET(BULK N'C:\Image1.jpg', SINGLE_BLOB) rswith this statement i can insert single image(in the case table has single row only)
now i need to insert name and image i have 300 records ..can any one help me out
Thannks and Regards
Iftikar HussainPosted Jul 11, 2013, 12:06 PM
You will be not able to do by using single insert command. You can try like this
Regards,
Iftikar