Monthly Archives: August 2014

Home »  2014 »  August

‘agent XPs’ 구성 요소는 이 서버의 보안 구성에 따라 해제됩니다.

‘agent XPs’ 구성 요소는 이 서버의 보안 구성에 따라 해제됩니다.
시스템 관리자는 sp_configure를 사용하며 ‘agent XPs’를 사용하도록
설정할 수 있습니다. ‘agent XPs’설정 방법은 SQL Server온라인 설명서의
‘노출 영역 구성’을 참조하십시오 (ObjectExplorer)

sp_configure ‘show advanced options’,1;

RECONFIGURE;

sp_configure ‘Agent XPs’, 1;
행행
RECONFIGURE;

– 위의 쿼리 실행
 

Column count of mysql.db is wrong. Expected 22, found 20. The table is probably

아래와 같은 에러를 확인할때
[ERROR] Column count of mysql.db is wrong. Expected 22, found 20. The table is probably corrupted
[ERROR] mysql.user has no `Event_priv` column at position 29
[ERROR] Event Scheduler: An error occurred when initializing system tables. Disabling the Event Scheduler.
 
mysql_upgrade –force -uroot -p [your mysql root password]
끝!