본문 바로가기

전체 글234

저자로 참여한 책 입니다. [DB 성능 향상을 위한 SQL Server 운영과 튜닝] 데이터베이스 설정 , 시스템 설정 파트 저자로 참여 하였습니다. 더 잘쓰지 못한게 많이 아쉽네요^^ DB 성능 향상을 위한 SQL Server 운영과 튜닝 SQLTAG 저 | 936쪽 | 35,000원 | 978-89-314-4242-7 | 2012년 4월 17일 | 영진닷컴 :: 책 소개 이 책은 마이크로소프트의 SQL Server를 효율적으로 운영하기 위해 필요한 내용들을 담고 있습니다. 초반부에는 시스템 설정에서부터 백업 및 데이터 전송 최적화와 관련된 내용을 다루고 있습니다. 그리고 중반부에는 액세스 패턴과 파티션, 조인, 잠금 등 튜닝에 필요한 기초 내용과 데이터 분석 툴과 실전 튜닝에 대해 설명하고 있습니다. 그리고 후반부에는 장애 조치 클러스터와 미러링, 로그 전달과 BI에 대한 내용들을 설.. 2012. 8. 9.
SELECT INTO failed because the following SET options have incorrect settings: 'ANSI_PADDING'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or query notifications and/or xml data type methods. (Sou.. Error messages: SELECT INTO failed because the following SET options have incorrect settings: 'ANSI_PADDING'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or query notifications and/or xml data type methods. (Source: MSSQLServer, Error number: 1934) Get help: http://help/1934 SELECT INTO failed because the following SET options have incorr.. 2012. 5. 10.
DB 속성 보기 Error sp_helpdb 실행 name 명은 실제 서비스 DB 이름이라 삭제 하였고 owner 즉 소유자가 ~~UNKNOWN~~ 인걸 알수 있다. 이렇게 되어 있는 DB 를 마우스 오른쪽를 이용하여 속성을 보고자 할때 아래와 같은 Error 가 나면서 볼수 없다. DB 속성 보기 Error Property Owner is not available for Database '[DB명]'. This property may not exist for this object, or may not be retrievable due to insufficient access rights. (Microsoft.SqlServer.Smo)소유자 지정으로 해결 USE DB명 exec sp_changedbowner @loginame = .. 2012. 2. 17.
Delete Publication: the principal "dbo" does not exist, this type of principal cannot be impersonated, or you do not have permission" 얼마전 서버 이전 후 복제 관련한 오류가 발생하였다. 복제 구성시 물리적 File 소유자를 지정 되어 있지 않아 발생한 것이다. USE GO EXEC sp_droppublication @publication = N'' USE master GO EXEC sp_replicationdboption @dbname = N'', @optname = N'publish', @value = N'false' 트랜잭션 게시자 삭제시 아래와 같은 오류가 나는 경우가 있을 것이다. “TITLE: Microsoft.SqlServer.ConnectionInfo SQL Server could not disable publishing and distribution on \. ADDITIONAL INFORMATION: An except.. 2011. 12. 30.