-- Behavior Create database db1 Go USE [master] GO ALTER DATABASE [db1] COLLATE Korean_100_CI_AS_SC_UTF8 GO use db1 go create table t1 (col1 varchar(10)) create table t2 (col1 nvarchar(10)) truncate table t1; truncate table t2; insert into t1 values ('A') insert into t1 values (N'A') insert into t1 values ('가') insert into t1 values (N'가') insert into t2 values ('A') insert into t2 values (N'A')..
-- Behavior IF OBJECT_ID(N't2', N'U') IS NOT NULL DROP TABLE t2; GO IF OBJECT_ID(N't1', N'U') IS NOT NULL DROP TABLE t1; GO CREATE TABLE t1 (a INT NOT NULL PRIMARY KEY); CREATE TABLE t2 (a INT NOT NULL REFERENCES t1(a)); GO INSERT INTO t1 VALUES (1); INSERT INTO t1 VALUES (3); INSERT INTO t1 VALUES (4); INSERT INTO t1 VALUES (6); GO --SET XACT_ABORT OFF; --GO --BE..
텍스트 파일에서 특정 단어만으로 필터링하거나 해당 단어만 제외시켜 편집하고자 할때 사용 Select-String -Path .\ -Pattern "" | Format-Table Line -AutoSize | Out-String -Width 4096 |Out-File .\ Select-String -Path .\ -NotMatch "" | Format-Table Line -AutoSize | Out-String -Width 4096 |Out-File .\
relog *.blg -o mergelog.blg C:\>relog /?Microsoft r Relog.exe (6.3.9600.16384)Relog creates new performance logs from data in existing performance logs by changing the sampling rate and/or converting the file format. Supports all performance log formats, including Windows NT 4.0 compressed logs. Usage: relog [options] Parameters: Performance file to relog. Options: -? Displays context sensitive ..
Product:Windows Operating SystemEvent ID:7Source:diskVersion:5.2Symbolic Name:IO_ERR_BAD_BLOCKMessage:The device, %1, has a bad block. /Device\Harddisk\DR1 장치에 잘못된 블록이 있습니다.ExplanationThe device has a bad block of memory, which Windows attempted to read. The data might be missing or corrupted.User ActionIf this event is logged regularly, replace the hard disk drive. [환경] Windows Server 2008 R2 [..
System table 조회 권한 부여 (변경 권한은 필요 없음) [환경] SQL Server 2008 R2 [방법] 아래 쿼리를 수행하여 특정 사용자에게 서버 상태를 조회할 수 있는 권한을 부여합니다. GRANT VIEW SERVER STATE TO SQL사용자 예) public_user 사용자에게 권한 부여 GRANT VIEW SERVER STATE TO public_user [확인] Server Role - public 사용자 맵핑 - 없음 -- sys.sysprocesses 시스템 카탈로그 조회 가능 -- 서버구성 변경을 시도하면 권한 부족 메시지 발생 -- 위와 같이 구성변경 권한은 없지만 조회는 가능
참고할만한 내용 AnnounceFlags Registry path HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config Version Windows XP, Windows Vista, Windows 7, Windows Server 2003, Windows Server 2003 R2, Windows Server 2008, and Windows Server 2008 R2 This entry controls whether this computer is marked as a reliable time server. A computer is not marked as reliable unless it is also marked as a time ser..
IE ESC(Internet Explorer 보안 강화 구성) 해제 도메인 그룹 정책 설정 방법 [환경] Windows Server 2012 R2 [How to..] 1. DC 그룹정책 설정 -- 첨부된 파일(inetesc.adm)을 다운로드 후 도메인 컨트롤러 서버의 "C:\Windows\Inf\IE_ESC\" 디렉터리에 복사합니다. 디렉터리가 없을 경우 새로 생성합니다. 메일에 첨부된 파일을 사용하지 않고 Inetesc.adm을 MS 공식 사이트에서 다운로드하려면 Windows Server 2003 Resource Kit Tools (http://www.microsoft.com/en-us/download/details.aspx?id=17657) 를 다운로드 후 설치하고 설치 디렉터리에서 inetesc..