Microsoft
Software
Hardware
Network
Question : Inserting picture's from a url into MS SQL Server 2008
Is there a way, to insert a picture into a sql server, if that image is only accessable via a URL?
e.g.:
UPDATE dbo.tbl_Photos SET Document =
(SELECT * FROM
OPENROWSET(BULK '
http://www.website.be/pho
tos/1.jpg'
, SINGLE_BLOB) AS ORS)
WHERE INP_ID = '00000000-0000-0000-0000-0
0000000000
0'
Thanks in advance,
MA
Answer : Inserting picture's from a url into MS SQL Server 2008
you must do it from .net code
but you can use CLR to run .net code from sql server.
Random Solutions
Adding new button to windows taskbar
Using a geometry type check constrint in sql sever 2008
Silverlight UserControl with child UserControls
Apostrophe in combo box search
Receiving multiple EVENT ID: 1053 on Windows 2003 Server, why?
IIS 6.0, SSL Renew, 2048 bit key lenth
Convert binary data to string to displayable text for user
boost shared_ptr
Problems with parsing an error message into a label on a form
How to retrive OU Properties in an Active Directory using VB.NET