Quantcast
Channel: MySQL Forums - InnoDB
Viewing all articles
Browse latest Browse all 1954

MySQL create table in database information_schema (1 reply)

$
0
0
Hi,

Anyone can give on how to create a table on MySQL database information_schema?

use information_schema;

CREATE TEMPORARY TABLE `TEST` (
`TEST_DESC` varchar(512) NOT NULL DEFAULT '',
`TEST_CREATE_TIME` datetime DEFAULT NULL,
`TEST_UPDATE_TIME` datetime DEFAULT NULL,
`TEST_CHECK_TIME` datetime DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8;

ERROR 1044 (42000): Access denied for user 'root'@'localhost' to database 'information_schema'

Please advice.

Regards,
FSPalero

Viewing all articles
Browse latest Browse all 1954

Trending Articles