본문 바로가기
반응형

분류 전체보기4965

column 길이 조정하기 및 default ' ' 지정 1. 테이블의 컬럼제약 조건을 지운다. alter table tpo_order drop constraint DF__tpo_order__remar__334BA2D4 2. 컬럼의 길이를 변경한다. 100에서 1500으로 수정하였음 alter table tpo_order alter column remark varchar(1500) not null --default(' ') 디폴트가안된다.. 3. 컬럼 제약조건을 추가한다. alter table tpo_order add constraint DF__tpo_order__remar__334BA2D41 4. 컬럼의 디폴트값을 지정한다. alter table tpo_order add constraint DF__tpo_order__remar__334BA2D41 defaul.. 2009. 1. 14.
구로디지털 근처 맛집 1) 구로디지털단지역 - 벌집삽결살 http://blog.naver.com/scent77cho?Redirect=Log&logNo=100056145283 못가봤음 2) 구로디지털단지역 - 은행골 http://blog.naver.com/skypys7?Redirect=Log&logNo=90027217226 못가봤음 3) 구로디지털단지역 - 근처 아무데나 4) 대림역 - 마늘치킨 http://blog.naver.com/zenzang75?Redirect=Log&logNo=10037115009 가봤음 , 평가 75 5) 여의도 - 다미 http://blog.naver.com/cool2428?Redirect=Log&logNo=50037886187 가봤음 , 평가 80 6) 여의도 - 엉터리생고기집 http://blo.. 2009. 1. 14.
쿼리속도 체크 원문: http://mystop.tistory.com/192 (항상감사합니다) 사용하기 sp_checkqry "select top 10000 * from tsp_requestsub with (index=tsp_requestsub_idx_con)" 실행후 쿼리의 속도가 1/100 단위로 나옴 프로시져만들기 CREATE procedure sp_checkqry @status varchar(2000) , @status2 varchar(2000) = '' , @status3 varchar(2000) = '' , @status4 varchar(2000) = '' , @status5 varchar(2000) = '' , @status6 varchar(2000) = '' as set transaction isolati.. 2009. 1. 9.
Dynamic DataGridView filtering in C# 동적으로 datagridview 를 필터링 하는 방법퍼왔다 ^^ 대단하다.http://www.dotneat.net/2008/12/03/DynamicDataGridViewFilteringInC.aspxIn a few lines of code, we can convert a DataGridView control in a powerfull fully searchable control with dynamically generated filters for each column of field the DataGridView is binded to.How does it work?The DataGridControl is binded to the datasource. The user hits the button (or .. 2009. 1. 9.
반응형