2000에서 2005로 이전시 테이블 스키마소유자가 변경 될 수 있다. declare @table_name varchar(500) declare table_cur Cursor for select 'FROM_SCHEME.' + name from sysObjects where uid = USER_ID('FROM_SCHEME') open table_cur Fetch next From table_cur into @table_name while @@Fetch_status = 0 Begin EXEC sp_changeobjectowner @table_name, 'TO_SCHEME' Fetch next From table_cur into @table_name End close table_cur deAllocate ta..
데이터베이스 중지 가능할때 1. 데이터베이스 생성 2. 데이터베이스 중지 3. MDF,LDF 복사 4. 데이터베이스 시작 5. 쿼리분석기 EXEC sp_attach_db @dbname = N'디비명' , @filename1 = N'ldf경로\ldf명' , @filename2 = N'mdf경로\mdf명' 실행 데이터베이스 중지 불가능할때 1. 데이터베이스 생성 2. 데이터베이스 분리 3. MDF,LDF 복사 5. 쿼리분석기 EXEC sp_attach_db @dbname = N'디비명' , @filename1 = N'ldf경로\ldf명' , @filename2 = N'mdf경로\mdf명' 실행 @Reference http://blog.naver.com/park5609/30046499107
실행 > mstsc /console 옵션 > 로컬리소스탭 > 로컬 장치 및 리소스 > 자세히 > 로컬디스크 체크 테스트용 2차 도메인 외부에 노출 안되고 설정된 피씨만 접속되게 IIS 설정 : [nick.domain.com] 웹사이트 추가. 로컬피씨 C:\Windows\system32\drivers\etc\hosts 파일에 000.000.000.000 nick.domain.com 추가 cmd > ipconfig /flushdns 실행
디비오류로그 (tail -n200 /usr/local/mysql/data/localhost.err) 보면 깨진 디비의 테이블확인 가능 "Table '[TABLE_NAME]' is marked as crashed and should be repaired" /usr/local/mysql/bin/mysqlcheck -Aao --auto-repair -u root -p mysqld restart 시 localhost.err 에 110423 19:14:25 [ERROR] Column count of mysql.db is wrong. Expected 22, found 15. The table is probably corrupted 110423 19:14:25 [ERROR] mysql.user has no `Even..
http://www.maxmind.com/app/geolitecity http://www.maxmind.com/app/csv ▷ Instructions on how to use our CSV databases with a SQL database. ▷ Download the latest GeoLite Country CSV Format GeoIP Country CSV Text Files MaxMind GeoIP databases are available in a Comma Separated Value (CSV) format, in addition to the binary format. These CSV files generally contain IP Address range and geographical d..
jQuery(document).ready(function(){ $(document).mousemove(function(e){ arr_mousexy["x"] = e.pageX; arr_mousexy["y"] = e.pageY; }); });