Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 라즈베리파이
- port
- PyQt
- 맛집
- PyQt5
- 날짜
- flutter
- pandas
- javascript
- 함수
- 다이어트
- MS-SQL
- swift
- tensorflow
- PER
- ubuntu
- GIT
- urllib
- 유니티
- mssql
- MySQL
- python
- IOS
- Linux
- 리눅스
- node.js
- sqlite
- ASP
- Unity
- Excel
Archives
목록로그축소 (1)
아미(아름다운미소)
SQL Server 로그축소
SQL Server 로그축소(쿼리) [DB 로그 줄이기] * MSSQL 2008 의 경우 USE [testdb]; ALTER DATABASE [testdb] SET RECOVERY SIMPLE; DBCC SHRINKFILE ([testdb_Log], 10); ALTER DATABASE [testdb] SET RECOVERY FULL; * MSSQL 2005 의 경우 use [testdb]; exec sp_helpfile; backup log [testdb] with no_log; dbcc shrinkfile ([testdb_log], 10); * MSSQL 2000 의 경우 use [DB명]; sp_helpfile; -- 로그파일 정보 확인 backup log [DB명] with truncate_only..
데이타베이스/MSSQL
2018. 12. 28. 09:00