Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Magento - Nie znaleziono tabeli podstawowej lub widoku

Uruchom poniższy kod w swojej bazie danych

CREATE TABLE IF NOT EXISTS `index_process` (
  `process_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Process Id',
  `indexer_code` varchar(32) NOT NULL COMMENT 'Indexer Code',
  `status` varchar(15) NOT NULL DEFAULT 'pending' COMMENT 'Status',
  `started_at` timestamp NULL DEFAULT NULL COMMENT 'Started At',
  `ended_at` timestamp NULL DEFAULT NULL COMMENT 'Ended At',
  `mode` varchar(9) NOT NULL DEFAULT 'real_time' COMMENT 'Mode',
  PRIMARY KEY (`process_id`),
  UNIQUE KEY `UNQ_INDEX_PROCESS_INDEXER_CODE` (`indexer_code`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COMMENT='Index Process' AUTO_INCREMENT=10 ;

--
-- Dumping data for table `index_process`
--

    INSERT INTO `index_process` (`process_id`, `indexer_code`, `status`, `started_at`, `ended_at`, `mode`) VALUES
    (1, 'catalog_product_attribute', 'pending', '2014-05-03 00:20:11', '2014-05-03 00:20:11', 'real_time'),
    (2, 'catalog_product_price', 'pending', '2014-05-03 00:20:12', '2014-05-03 00:20:12', 'real_time'),
    (3, 'catalog_url', 'pending', '2014-05-03 00:29:34', '2014-05-03 00:29:34', 'real_time'),
    (4, 'catalog_product_flat', 'pending', '2014-05-03 00:20:12', '2014-05-03 00:20:12', 'real_time'),
    (5, 'catalog_category_flat', 'pending', '2014-05-03 00:11:40', '2014-05-03 00:11:40', 'real_time'),
    (6, 'catalog_category_product', 'pending', '2014-05-03 00:29:34', '2014-05-03 00:29:34', 'real_time'),
    (7, 'catalogsearch_fulltext', 'pending', '2014-05-03 00:29:34', '2014-05-03 00:29:34', 'real_time'),
    (8, 'cataloginventory_stock', 'pending', '2014-05-03 00:20:11', '2014-05-03 00:20:11', 'real_time'),
    (9, 'tag_summary', 'pending', '2014-05-03 00:20:12', '2014-05-03 00:20:12', 'real_time');


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Wstawianie danych, jeśli liczba wierszy jest większa niż 0, nie działa

  2. FROM_UNIXTIME() Przykłady – MySQL

  3. Wynik zapytania mysql do tablicy php

  4. połączenie Pythona 2.6.1 z MySQLdb

  5. Jak stworzyć połączony serwer MySQL