I got the following error message in a magento store after upgrading from 1.4.0.1 to 1.4.1.1. Though I moved products and categories from old site. And this lead me to see the error in the report directory:

Mage registry key "_resource_singleton/customer/customer_address" already exists

To fix this quickly, first, I simply commented a line in app/Mage.php file, line No.192

public static function register($key, $value, $graceful = false)
    {
        if (isset(self::$_registry[$key])) {
			if ($graceful) {
                return;
            }
            //self::throwException('Mage registry key "'.$key.'" already exists');
        }
        self::$_registry[$key] = $value;
    }

Above trick will resolve the issue quickly. Though I would not recommend. So, I restored the file as it was before. Then I looked at eav_entity_type table. And noticed in entity_model field value is customer/customer_address where entity_type_code is customer_address. This value should be customer/address, changed it, wow, started to work perfectly again!

So, if you see the similar error and don’t know how to fix in database then commenting the mentioned line will definitely help.

Let me how you have fixed :)