Bulk Upload Alternate Images?

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
User avatar
draneb
Captain (CAPT)
Captain (CAPT)
Posts: 314
Joined: Sun Jun 12, 2005 4:07 pm
Location: Texas
Contact:

Bulk Upload Alternate Images?

Post by draneb » Wed Aug 17, 2011 3:39 pm

Hello,

I have about 700 products in one category that all need the same 6 alternate images added.
Would someone be able to suggest the best method for doing this?

Thank you very much!
AC 7.0.3 build 13937

euroluxantiques
Commander (CMDR)
Commander (CMDR)
Posts: 118
Joined: Sat Dec 20, 2008 11:27 pm

Re: Bulk Upload Alternate Images?

Post by euroluxantiques » Thu Sep 08, 2011 1:25 pm

I populate my additional images into ac_ProductImages directly via SQL. I've been doing it for a couple of years like this, and it hasn't seemed to hurt anything.

I would just use an insert statement like:

INSERT INTO dbo.ac_ProductImages ( ProductId, ImageUrl, ImageAltText,OrderBy )

SELECT a.ProductId, [Link to Image],[Alternate Text],[OrderBy, e.g., 1-6]
FROM dbo.ac_Products

Run this for each image you want to post.

Hope this helps.

Post Reply