-- 테이블명으로 테이블들 검색
sp_tables '%테이블명%'
-- 컬럼명 검색
sp_columns @table_name='%', @column_name='%컬럼명%'
-- 실행계획결과를 표로 보기
set statistics profile on
-- 테이블의 여러정보(인덱스 등등) 보기
테이블 선택한 상태에서 alt + f1 누름 (이병화가 알려줌 -_-)
-- 뷰 또는 프로시저 스키마 보기
sp_helptext 뷰또는 프로시저이름
-- 지정한 테이블의 데이터와 인덱스에 대한 조각화 정보를 표시
DBCC SHOWCONTIG(테이블명)
-- 특정 단어가 들어간 뷰/프로시저/펑션/트리거 찾기
-- V(뷰), P(프로시저), FN(펑션), TR(트리거)
Select
distinct c.name as owner, a.name as objname, a.xtype
From
dbo.sysobjects a with (nolock)
inner join dbo.syscomments b with (nolock) on a.id = b.id
inner join dbo.sysusers c with (nolock) on a.uid=c.uid
Where
a.category < 2
and b.text like lower('%특정단어%')
Order By
owner, objname, xtype
영삼넷
Categories
Recent Posts
Recent Comments
Statistics
- Total Visitors:
- 386066
- Today:
- 684256
- Yesterday:
- 97511516
IT강국 김영삼 블로그에 오신걸 진심으로 환영합니다.
©2002 영삼넷 // openkr
©2002 영삼넷 // openkr