FLUSH PRIVILEGES;

ERROR 1146 (42S02): Table 'mysql.procs_priv' doesn't exist  <--- 이런 오류가 날때는 아래와 같이

create table procs_priv ( test int );


조금 찾아 보니 이런 문제가 다른 분한테도 있나 보네요 버그인가본데.. 

요럴때는 servers 라는 테이블을 생성해 주면 에러 메세지가 뜨지 않습니다

 

CREATE TABLE `servers` ( 

`Server_name` char(64) NOT NULL, 

`Host` char(64) NOT NULL, 

`Db` char(64) NOT NULL, 

`Username` char(64) NOT NULL, 

`Password` char(64) NOT NULL, 

`Port` int(4) DEFAULT NULL, 

`Socket` char(64) DEFAULT NULL, 

`Wrapper` char(64) NOT NULL, 

`Owner` char(64) NOT NULL, 

PRIMARY KEY (`Server_name`) 

) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='MySQL Foreign Servers table';

+ Recent posts