DB 관련

[MsSql] DB의 모든 테이블의 모든 데이터 삭제하는 방법

DevReff 2024. 12. 27. 08:12




728x90
반응형
SELECT object_name (i.id) TableName, rows as RowCnt
FROM sysindexes i INNER JOIN sysObjects o ON (o.id = i.id AND o.xType = 'U')
WHERE indid < 2
 and object_name (i.id) like 'TBP_%'
ORDER BY TableName

출처: https://devdb.tistory.com/21 [DB 관련:티스토리]