rollback tran godrop table tbl_x, tbl_x_20120109 gocreate table tbl_x (idx int ,c1 int) gocreate table tbl_x_20120109 (idx int ,c1 int) go-- 준비완료 -- 1. 한방넣어 insert into tbl_x values (1,1)-- 2. 다른세션에서 아래 쿼리 실행 begin tran exec sp_rename tbl_x, tbl_x_dummy waitfor delay '00:00:05.000' exec sp_rename tbl_x_20120109, tbl_x exec sp_rename tbl_x_dummy, tbl_x_20120109 commit tran -- 3. 5초내 다른 세션에서 다음쿼리 ..
IIS 세팅하다가 보면 서비스를 올렸을 때 아래와 같은 창이 뜨는 경우가 있을 것이다.명령 프롬프트를 실행하고 아래 명령을 입력하고 실행시키면 .Net 4.0을 재등록한다. C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i이상없이 페이지가 열릴 것이다.
--tables select 'EXEC sp_dropextendedproperty @name = ''MS_Description'' ,@level0type = ''schema'' ,@level0name = ' + object_schema_name(extended_properties.major_id) + ' ,@level1type = ''table'' ,@level1name = ' + object_name(extended_properties.major_id) from sys.extended_properties where extended_properties.class_desc = 'OBJECT_OR_COLUMN' and extended_properties.minor_id = 0 and extended_prop..
String Format for DateTime [C#] This example shows how to format DateTime using String.Format method. All formatting can be done also using DateTime.ToString method. Custom DateTime Formatting There are following custom format specifiers y (year), M (month), d (day), h (hour 12), H (hour 24), m (minute), s (second), f (second fraction), F (second fraction, trailing zeroes are trimmed),t (P.M or ..
DateTime Class(http://msdn.microsoft.com/ko-kr/library/w2sa9yss.aspx) DateTime.ParseExact 메서드를 이용해 변경해보자 메서드의 요구하는 매개변수들은 string s : 문자열로 된 날짜(ex:20130312202112) string format : 위 문자(s)의 형태(ex:yyyyMMddHHmmss) IFormatProvider provider : 서식 지정을 제어하는 개체를 검색하기 위한 메커니즘(ex:CultureInfo) public static DateTime ParseExact( string s, string format, IFormatProvider provider ) 예제 string buy_time = "20130312..
--사용 방법 프로시저에 특정문자가 있는 프로시저를 찾고 싶을 때 사용--조회 : 이름, 타입DECLARE @p_SearchText nvarchar(MAX)SET @p_SearchText = '*'select t1.name, t1.typefrom sys.objects t1where exists ( select 'x' from syscomments t2 where t1.object_id = t2.id and t2.text like '%' + @p_SearchText + '%' ) 출처 : http://cooldragon.tistory.com
abs() - 절대값구하기 array(배열) - 배열을 반환 asc() - 문자의 ANSI문자값을 반환 atn() - 아크 탄젠트로 반환 cbool() - boolean형식으로 반환 cbyte() - byte형식으로 반환 ccur() - currency형식으로 반환 cdate() - date형식으로 반환 cdbl() - double형식으로 반환 chr() - asc()함수의 반대, ANSI문자를 일반문자로 변환 cint() - interger형식으로 반환 clng() - long형식으로 반환 cos(각도) - 주어진 각도의 코사인 값을 반환 createobject() - 자동화 인터페이스를 통해 다른 응용프로그램이나 프로그래밍 도구에 나타나는 객체에 대한 참조를 만들어 반환 cstr() - string형..
Visual Studio Express 2012 for Web을 설치하고 MVC4 프로젝트에 WCF Service를 추가해서 사용하려고 테스트 해봤다.근데 이거 왠걸 일반 ASP.NET 프로젝트에서는 이상없이 참조가 되었던 WCF Service가 MVC4 프로젝트에서는 오류 1개, 경고 3개를 뿜는다.오류 내용은 사용자 지정 도구 오류 : 서비스 참조 'Service'에 대해 코드를 생성하지 못했습니다. 자세한 내용은 기타 오류 및 경고 메시지를 확인하십시오. 그래서 도움말 봤다 안보는게... 정신 건강에 좋았을 거 같았다.해결 방법은 이렇다 추가한 서비스에서 오른쪽 마우스를 누르면 '서비스 참조 구성(C)'가 보인다. 메뉴를 선택하면 아래와 같은 화면이 나온다.그중에 '참조된 어셈블리의 형식 재사용'이..