xp_ReadErrorLog
xp_enumerrorlogs : DBA를 위한 비공식 프로시져
xp_readerrorlog : sp_readerrorlog 0, 1, 'Failed', 'login'
설명 : http://www.sqlteam.com/article/using-xp_readerrorlog-in-sql-server-2005
오류로그 초기화)
sp_cycle_errorlog
JDBC로 모니터 프로그램 개발)
sql = (" { call sp_readerrorlog ( 0, 1, 'Failed', 'login' )}");
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
.오류내용)
com.microsoft.sqlserver.jdbc.SQLServerException: 업데이트에 대한 결과 집합이 생성되었습니다.
com.microsoft.sqlserver.jdbc.SQLServerException: 'xp_readerrorlog'이(가) 프로시저 개체이므로 프로시저 'xp_readerrorlog'을(를) 요청하지 못했습니다.
output 매개 변수로 선언되지 않았지만 실제 매개 변수가 요청된 출력에 전달되었습니다
.'DB > MSSQL' 카테고리의 다른 글
MSSQL 오류 순환 문제 (0) | 2016.06.05 |
---|---|
MSSQL Bruteforce 공격 차단 방법 (0) | 2016.06.05 |
MSSQL OS 메모리 사용량 확인 (0) | 2016.06.05 |
MSSQL DMV (동적 관리 뷰) (0) | 2016.06.04 |
MSSQL Server Management Studio 사용 권한 (0) | 2016.06.04 |