운영/SQL Server 관리 도구
2013. 11. 26.
SSMS(Sql Server Management Studio) 단축키 설정하기
SSMS를 사용하면서 단축키를 사용해서 쉽게 쿼리를 실행하고자 할때 사용됩니다. 1. 단축키 설정하기 : Tools의 Options을 선택합니다. : Environment - Keyboard - Query Shortcus에 단축키 항목을 입력합니다. 2. 자주쓰는 단축키 항목들 Ctrl+1 : sp_who Ctrl+2 : sp_lock Ctrl+3 : set statistics io on;set statistics time on;set statistics profile on; Ctrl+4 : set statistics io off;set statistics time off;set statistics profile off; Ctrl+5 : sm_index_info(사용자프로시저) Ctrl+6 : selec..