Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Editing multiple BLOBs at once

Status
Not open for further replies.

bmacbmac

IS-IT--Management
Jan 26, 2006
392
US
Hello. Forgive me, I'm not too familiar with BLOB data.

I have a database with about 2000 rows of BLOB records which contains HTML data for each record. I have to edit data in some of my records. I can edit the data tables with UPDATE, but unsure of how I can edit the BLOB data.

I have a utility where I can open each blob one at a time and do a find/replace for my data. One at a time will take forever though!

Does anyone know of a more efficient way to change these BLOB entries or know of a utility that might help me?

Thanks!
 
If you can change your schema, and are using SQL 2005 +, I would recommend to use a VARCHAR(MAX) column instead (assuming your HTML data is all character data). It will make life much easier for you in the long run.
 
oh... forgot to mention that. Using SQL 2000.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top