MySQL Forums
Forum List  »  InnoDB

MySQL create table in database information_schema
Posted by: Ferdie Palero
Date: June 28, 2016 02:20AM

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

Options: ReplyQuote


Subject
Views
Written By
Posted
MySQL create table in database information_schema
1931
June 28, 2016 02:20AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.