iBatis 프로젝트 이름 변경
MyBatis / 2010. 6. 16. 07:55
iBatis에서 MyBatis로 프로젝트 이름 변경.
홈페이지 : http://www.mybatis.org/index.html
구글코드 : http://code.google.com/p/mybatisnet/
끝.
끝.
window.opener='nothing';
window.open('','_parent','');
window.close();
-- all
window.open('', '_self', '');
window.close();
끝.
Transaction Log 자르기
1. MS-SQL 2005
backup log [dbname] with no_log
dbcc shrinkfile('IGROO_DB_Log',1)
2. MS-SQL 2008
ALTER DATABASE [dbname] SET RECOVERY SIMPLE
GO
DBCC SHRINKFILE(2, 1)
GO
ALTER DATABASE [dbname] SET RECOVERY FULL