회사에서 짤리고 싶을 때 쓰기에 좋은 쿼리

  • Post author:
  • Post category:
  • Post comments:4 Comments
  • Post last modified:November 9, 2007

현재 데이터베이스(SQL Server 2005)에 있는 모든 테이블을 비워버린다. 테스트용으로 작성한 쿼리이니 실제 데이터베이스에서 쿼리를 실행시키고 원망 말기.

-- 데이터 날리기
DECLARE @deleteSql NVARCHAR(4000)
DECLARE @tableName NVARCHAR(128)

DECLARE tables_cursor CURSOR FOR
	SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES

OPEN tables_cursor

-- Perform the first fetch.
FETCH NEXT FROM tables_cursor
INTO @tableName

SELECT @deleteSql = N'TRUNCATE TABLE [' + @tableName + N'];
'

-- Check @@FETCH_STATUS to see if there are any more rows to fetch.
WHILE @@FETCH_STATUS = 0
BEGIN
	-- This is executed as long as the previous fetch succeeds.
	FETCH NEXT FROM tables_cursor
	INTO @tableName
	SELECT @deleteSql = @deleteSql + N'TRUNCATE TABLE [' + @tableName + N'];
'
END

CLOSE tables_cursor
DEALLOCATE tables_cursor

PRINT N'--  DELETE SQL'
PRINT @deleteSql

EXECUTE sp_executesql @deleteSql
Author Details
Kubernetes, DevSecOps, AWS, 클라우드 보안, 클라우드 비용관리, SaaS 의 활용과 내재화 등 소프트웨어 개발 전반에 도움이 필요하다면 도움을 요청하세요. 지인이라면 가볍게 도와드리겠습니다. 전문적인 도움이 필요하다면 저의 현업에 방해가 되지 않는 선에서 협의가능합니다.
0 0 votes
Article Rating
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

4 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
tomowind
tomowind
16 years ago

짤리는게 아니라 고발당할 수도…

최재훈
16 years ago

제목 바꿀까요? “고발 당하고 싶을 때 쓰기에 좋은 쿼리” 

kingori
16 years ago

고발정도가 아니라 DBA에게 칼 맞고 승천할 수도 있을 것 같은데요

최재훈
16 years ago

문명인끼리 말로 하면 안 될까요?