Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey guys I'm missing the SQL out of this to Bulk update attributes by SKU/UPC

Running EE1.10 FYI

I have all the rest of the code working but I"m not sure the who/what/why of actually updating our attributes, and haven't been able to find them, my logic is

  1. Open a CSV and grab all skus and associated attrib into a 2d array
  2. Parse the SKU into an entity_id
  3. Take the entity_id and the attribute and run updates until finished
  4. Take the rest of the day of since its Friday

Here's my (almost finished) code, I would GREATLY appreciate some help.

    /**
     * FUNCTION: updateAttrib
     * 
     * REQS: $db_magento
     * Session resource
     * 
     * REQS: entity_id
     * Product entity value
     * 
     * REQS: $attrib
     * Attribute to alter
     * 
     */

See my response for working production code. Hope this helps someone in the Magento community.

share|improve this question

3 Answers

While this may technically work, the code you have written is just about the last way you should do this.

In Magento, you really should be using the models provided by the code and not write database queries on your own.

In your case, if you need to update attributes for 1 or many products, there is a way for you to do that very quickly (and pretty safely).

If you look in: /app/code/core/Mage/Adminhtml/controllers/Catalog/Product/Action/AttributeController.php you will find that this controller is dedicated to updating multiple products quickly.

If you look in the saveAction() function you will find the following line of code:

Mage::getSingleton('catalog/product_action')
    ->updateAttributes($this->_getHelper()->getProductIds(), $attributesData, $storeId);

This code is responsible for updating all the product IDs you want, only the changed attributes for any single store at a time.

The first parameter is basically an array of Product IDs. If you only want to update a single product, just put it in an array.

The second parameter is an array that contains the attributes you want to update for the given products. For example if you wanted to update price to $10 and weight to 5, you would pass the following array:

array('price' => 10.00, 'weight' => 5)

Then finally, the third and final attribute is the store ID you want these updates to happen to. Most likely this number will either be 1 or 0.

I would play around with this function call and use this instead of writing and maintaining your own database queries.

share|improve this answer
So if I'm updating the Product Class (which evidently has no internal bearing on things, just external) how does this correlate. – ehime Apr 30 '12 at 17:19
@Josh Pennington : +1 for great piece of research... – gowri Aug 29 '12 at 22:18
up vote -1 down vote accepted

Working production code.

/** 
 * TOOL: Magento Update/Set Attributes (MUSA)
 * AUTH: ehime :: Jd Daniel
 * VERS: Beta 1.0
 * 
 * REQS: $csvFilename
 * CSV file to be parsed
 * 
 * REQS: $skuLocation
 * SKU field location in file
 * 
 * REQS: $attribLocation
 * Attribute field location in file
 * 
 * DEPS: Mage.php
 * Magento core action file
 * 
 */

//hijack ini prefs
ini_set("display_errors", 1);
ini_set("memory_limit","1024M");

$csvFilename    = 'S12_Functional_Area_by_UPC.csv'; //csv filename
$skuLocation    = 0;                    //csv location of sku/upc
$attribLocation = 4;                    //csv location of attribute
$attribID   = 1691;                 //attribute id to grep for

$update     = true;                 //update or list

//stage and initialize Magento
require_once 'app/Mage.php';
Mage::init();

//set file mode creation mask
umask(0);

//get core resource
$coreResource = Mage::getSingleton('core/resource') ;

//prep file for ingestion
$readfile = prepCSV($csvFilename,$skuLocation,$attribLocation);

//begin write operation on connection
$write = $coreResource->getConnection('core_write');

//stage write markers
for ($i=1; $i < count($readfile)-1; $i++ ) {

    if($update && $update == true) {
        //modify db attribs
        print_r( updateAttrib ($write, $readfile[$i][0], $readfile[$i][1], $attribID) );
    } else {
        //list attribs in collection
        print_r( listAttrib ($write, $readfile[$i][0], $readfile[$i][1], $attribID) );
    }

}

echo "\r\nProduct attribute modification complete\r\n";
//end update session

    /**
     * FUNCTION: updateAttrib
     * 
     * REQS: $db_magento
     * Session resource
     * 
     * REQS: sku
     * Product upc/sku value
     * 
     * REQS: $attrib
     * Attribute to alter
     * 
     * REQS: $attribID
     * Attribute ID we're grepping for
     * 
     */

    function updateAttrib ($db_magento, $sku, $attrib, $attribID) {
        /*EAV update query string
        return ("UPDATE cataloginventory_stock_item AS csi
                      JOIN catalog_product_entity AS cpe ON cpe.entity_id = csi.product_id
                      JOIN catalog_product_entity_varchar AS cpev ON cpev.entity_id = cpe.entity_id
                    SET cpev.value = '$attrib'
                    WHERE attribute_id = '$attribID' AND sku = '$sku'");

        */

        //EAV update query string
        $db_magento->query("UPDATE cataloginventory_stock_item AS csi
                      JOIN catalog_product_entity AS cpe ON cpe.entity_id = csi.product_id
                      JOIN catalog_product_entity_varchar AS cpev ON cpev.entity_id = cpe.entity_id
                    SET cpev.value = '$attrib'
                    WHERE attribute_id = '$attribID' AND sku = '$sku'");

        return ("Update: $sku \r\nAttrib: $attrib\r\n\r\n");
    }

    /**
     * FUNCTION: listAttrib
     * 
     * REQS: $db_magento
     * Session resource
     * 
     * REQS: $sku
     * Product entity value
     * 
     * REQS: $attrib
     * Attribute to alter
     * 
     * REQS: $attribID
     * Attribute ID we're grepping for
     * 
     */

    function listAttrib ($db_magento, $sku, $attrib, $attribID) {

        //EAV query string
        return $db_magento->fetchall("  SELECT sku, product_id AS entity, value AS origional, '$attrib' as substitute
                        FROM cataloginventory_stock_item AS csi
                          JOIN catalog_product_entity AS cpe ON cpe.entity_id = csi.product_id
                          JOIN catalog_product_entity_varchar AS cpev ON cpev.entity_id = cpe.entity_id
                        WHERE attribute_id = '$attribID' AND sku = '$sku'");

    }

    /**
     * FUNCTION: prepCSV
     * 
     * REQS: $file
     * Sourcefile to digest
     * 
     * REQS: $sku
     * False UPC/SKU to operate on
     * 
     * REQS: $attrib
     * Quantity to alter
     * 
     */

    function prepCSV($file, $sku, $attrib) {
        //instantiate file object handler for iterator abilities
        $csv = new SplFileObject($file, 'r');

        //set operation flag
        $csv->setFlags(SplFileObject::READ_CSV);

        //set delimiter and enclosures
        $csv->setCsvControl(',', '"', '\\');

        //instantiate $prep and incrementor
        $prep=array(); $i=0;

        //use limit iterator to skip first line
        foreach(new LimitIterator($csv, 1) as $line){
            $prep[$i][0] = $line[$sku]; //assign skus
            $prep[$i][1] = $line[$attrib]; //assign qtys
            $i++; //increment for next array
        }

     //return prepped array
     return $prep; 
    }
share|improve this answer
2  
It is not a good idea to write your own queries. Especially for anything that is not a SELECT. – Josh Pennington Apr 29 '12 at 18:52
As a DB developer, I'm more than comfortable writing my own non-select queries. My real question focused around the location of the attributes and how they correlated to the entity_id – ehime Apr 30 '12 at 17:20
2  
Your question said you want to run update queries and that is what your script does. Your solution may work, however you are going to find that you are neglecting to update many of the Magento index tables that are setup. Using the Magento code I provided to you in the other answer handles all of those index table. You are going to find that some of your updates are not going to populate around the site since it does not update the index tables. – Josh Pennington Apr 30 '12 at 19:08

General Update Query will be like:

UPDATE 
  catalog_product_entity_[backend_type] cpex 
SET
  cpex.value = ? 
WHERE cpex.attribute_id = ? 
  AND cpex.entity_id = ?

In order to find the [backend_type] associated with the attribute:

SELECT 
  backend_type
FROM
  eav_attribute
WHERE entity_type_id =
  (SELECT
    entity_type_id
  FROM
    eav_entity_type
  WHERE entity_type_code = 'catalog_product')
AND attribute_id = ?

You can get more info from the following blog article:
http://www.blog.magepsycho.com/magento-eav-structure-role-of-eav_attributes-backend_type-field/

Hope this helps you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.