1 Articles, Search for '컬럼'

  1. 2008/11/13 카탈로그내에서 특정 컬럼을 참조하는 SP조회
DATABASE/SQLServer2008/11/13 18:37

select

col.table_catalog,

col.table_name,

col.column_name,

obj2.name as SP_Name,

obj2.id as SP_ID

from sysdepends dep, sysobjects obj, sysobjects obj2, information_schema.columns col

where dep.depid = obj.id

  and dep.id    = obj2.id

  and obj.name  = col.table_name

  and col.column_name = 'ssn'

  and obj2.xtype='P'

group by col.table_catalog, col.table_name, col.column_name, obj2.name, obj2.id

etc...
sp_tables
-- 테이블 리스트
select * from information_schema.tables
-- 컬럼 상세 정보
select * from information_schema.columns
where table_name = '테이블명'
order by 5

크리에이티브 커먼즈 라이센스
Creative Commons License
2008/11/13 18:37 2008/11/13 18:37
Posted by
Tags , ,

Leave your greetings.