Wrox Programmer Forums
Go Back   Wrox Programmer Forums > SQL Server > SQL Server 2005 > SQL Server 2005
|
SQL Server 2005 General discussion of SQL Server *2005* version only.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2005 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 5th, 2007, 10:41 AM
Registered User
 
Join Date: Oct 2007
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default Update IMAGE file in SQL Server

Can anyone give me a quick way to update an image in SQL Server? I have a client that has released a new logo and I need to update the image on file. Never done this with the actual image in the DB rather than a pointer to the image file. Thanks, All!

Cheers~

Monty D. Grimmett
 
Old October 5th, 2007, 04:03 PM
Friend of Wrox
 
Join Date: May 2006
Posts: 246
Thanks: 0
Thanked 0 Times in 0 Posts
Default

INSERT the new ímage into a temp table.
Then update as normal.


 
Old October 5th, 2007, 04:09 PM
Registered User
 
Join Date: Oct 2007
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks Peso! I used the following code in case someone else wants to see!

Cheers~

UPDATE SCHEMA.TABLE
SET FLD = (SELECT * FROM OPENROWSET(BULK 'IMG_FILE', SINGLE_BLOB)AS x)
WHERE Criteria_To_Update_Target_Row;
GO

Monty D. Grimmett





Similar Threads
Thread Thread Starter Forum Replies Last Post
How To Display Image from SQL Server ? kutel ASP.NET 2.0 Professional 3 July 30th, 2007 02:58 AM
Saving image in SQL Server 2000 ashu_from_india ADO.NET 0 February 21st, 2005 01:10 PM
How to get the image file stored in server in VB Andraw VBScript 0 January 29th, 2005 01:36 AM
SQL Server data update Anusha_SL SQL Server 2000 1 November 30th, 2004 08:37 AM
Uploading Image into SQL Server sankar General .NET 0 June 16th, 2004 02:06 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.