Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 5 of 5

Thread: Bulk Update "Exclude from Product Feeds"

  1. #1
    GraphicAudio is offline Member
    Join Date
    Jun 2007
    Posts
    48

    Default Bulk Update "Exclude from Product Feeds"

    Is there a way to bulk update or some SQL code that will make all of our products set NO to "Exclude from Product Feeds"?

    Thanks!

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    Sure. Simply run the script below against your DB. Make sure to have a full backup of the db first, just in case.

    Code:
    update product set ExcludeFromPriceFeeds=1
    *without the WHERE CLAUSE it'll update all rows in the product table

  3. #3
    GraphicAudio is offline Member
    Join Date
    Jun 2007
    Posts
    48

    Default

    The products still have the "*Exclude from Product Feeds:" set to Yes. Is there anything else I can try?

    I'm trying to get them in the Google Base feeds, so we can submit to the google merchant center.

  4. #4
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    sorry, it should be:

    Code:
    update product set ExcludeFromPriceFeeds=0
    0=no
    1=yes

  5. #5
    GraphicAudio is offline Member
    Join Date
    Jun 2007
    Posts
    48

    Default

    Thanks!

    It worked this time.