본문 바로가기

Computer

[MSSQL] 현재 연결 중인 connection 확인 SELECT S.SPID, S.LOGINAME, S.LOGIN_TIME, S.LAST_BATCH, C.CLIENT_NET_ADDRESS FROM sys.sysprocesses S, sys.dm_exec_connections C WHERE S.spid = C.SESSION_ID 더보기
윈도우즈7 인터넷 시간 동기화 주기 강제 조절하기 원문출처:http://forum.soft32.com/windows/auto-time-sync-period-changed-ftopict354301.html Thanks to Doug Knox for providing the instructions for solving this manually: "To make the registry change manually. Open a Command Prompt window and enter NET STOP W32TIME Leave the Command Prompt window open. Click Start, Run and enter REGEDIT Go to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Tim.. 더보기
복구에 걸리는 시간 측정 방법(SQLServer2008) So, your MSSQL service crashed in the middle of a big transaction? Or you bumped the service while it was rolling back some gigantic schema change (like say a column add on a 800 million row table)? Well, as you prepare your resume in preparation for the fallout from this debockle, you can use the following query to see how much time you have left. Or, I should say, how much time it thinks you h.. 더보기
[MS-SQL] table, view, procedure, function 한번에 삭제하기 sys.objects (Transact-SQL) --Table SELECT 'DROP TABLE ' + SCHEMA_NAME(schema_id)+'.'+name AS TableToDrop FROM sys.objects WHERE type='U' --VIEW SELECT 'DROP VIEW ' + SCHEMA_NAME(schema_id)+'.'+name AS ViewToDrop FROM sys.objects WHERE type='V' --PROCEDURE SELECT 'DROP PROCEDURE ' + SCHEMA_NAME(schema_id)+'.'+name AS procedureToDrop FROM sys.objects WHERE type='P' --FUNCTION SELECT 'DROP FUNCTION.. 더보기
윈도우 버전 확인 http://cappleblog.co.kr/522 더보기
[MSSQL][advanced] index 단편화 현상 인덱스 조각모음 방법 --> http://luvstudy.tistory.com/25 더보기
[MSSQL] 인덱스 Fragmentation(조각화) 상태 확인 http://laigo.kr/646 더보기
[MS-SQL]데이타베이스에 테이블이 있는지 확인하는 방법 *MSSQL 2000 해당 테이블이 있는지 확인방법 SELECT * FROM sysobjects WHERE id = OBJECT_ID(N'[dbo].[Table_Name]') AND type in (N'U') 해당 테이블에 인덱스가 있는지 확인방법 SELECT * FROM sysindexes WHERE id = OBJECT_ID(N'[dbo].[T_Post]') AND name = N'IX_T_Post' 해당 테이블에 뷰가 있는지 확인하는 방법 SELECT * FROM sysobjects WHERE id = OBJECT_ID(N'[dbo].[View_Table]') *MSSQL 2005 해당 테이블이 있는지 확인방법 SELECT * FROM sys.objects WHERE OBJECT_ID= OBJECT.. 더보기
SQL Server 데이터 파일 축소 SQL Server 2005 에서 데이터(mdf,ndf) 파일을 축소하는 방법에 대해서 아래와 같이 정리하였습니다. 데이터 파일의 할당 정보는 DBCC SHOWFILESTATS 명령을 사용하여 확인할 수 있습니다. 트랜잭션 로그 파일의 현재 사용 가능한 빈공간을 조회할 때 DBCC SQLPERF(LOGSPACE) 명령을 사용하면 됩니다. USE LAIGO GO DBCC SHOWFILESTATS 아래와 같이 LAIGO 데이터베이스의 데이터 파일 LAIGO 의 전체 크기와 사용량을 확인할 수 있습니다. Fileid FileGroup TotalExtents UsedExtents Name FileName ------------------------------------------------------------.. 더보기
How to uninstall properly SQL Server 2008 ? Hello ! I want to uninstall properly SQL Server 2008 with a command line Is there a good documentation on how to uninstall it without forget things (before / after) ? There are a lot of remaining folder, components, registry key ..... Thanks for advance for your ideas / help - Regards - Have a nice day ! RHUM2 Hi, To uninstall SQL Server 2008, try the following steps: 1. Make sure you have admin.. 더보기