본문 바로가기
반응형

Developer217

MS-SQL 테이블들 row count , Data size check -- 용량별 소팅SELECT table_name = convert(varchar(30), min(o.name)) --, table_size = convert(int, ltrim(str(sum(reserved) * 8192 / 1024., 15, 0))),table_size = sum(reserved), UNIT = 'KB' FROM sysindexes i INNER JOIN sysobjects o ON (o.id = i.id) WHERE i.indid IN (0, 1, 255) AND o.xtype = 'U' GROUP BY i.idORDER BY table_size DESC -- 테이블별 Row 수SELECT o.name , i.rows FROM sysindexes i INNER JOIN sysobje.. 2017. 11. 1.
모바일에서 사용자 select 방지 css body{ /* Prevent tablets from selecting text on taphold, etc: Note: If only the potential menu trigger elements should be protected, simply use the 'preventSelect: true' option. But we disable it more globally for tablet pc's, because the whole line or paragraph will still be selected otherwise. */ -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none.. 2017. 10. 20.
Dictionary 사용법 결재관련 많은 데이터를 넘기고 받을때 여러번 코딩 하는것이 굉장히 피곤한 일이다. 그렇게 되어 있는 것을 바로 잡아야 하는데 .... 쉽지가 않다. 그래서 여러번 코딩하는거라도 막아보려고 dictionary 를 사용해서 처리한 소스를 발견했다. LG 데이콤의 웹표준 결재 모듈 소스인데 asp로 된 아주 깜찍한 잘 정리된 소스라 재사용 하기로 햇다. The Dictionary object stores information in name/value pairs. 일단 객체를 생성해 준다. lg는 세션에 Dic 를 담았다. set Session("PAYREQ_MAP") = payReqMap 이렇게 처리하면 사용자가 뒤로가기 해도 입력했던 값을 db 핸들링 없이 다시 표기 할수있고... 아래처럼 처리해서 form.. 2017. 10. 11.
URL 짧게 쓰는법 / google URL Shortener 수많은 구글의 서비스 들 중에 긴 주소를 짧게 바꿔주는 서비스가 있다. 단순히 주소를 짧게 해주는 것 뿐만 아니라 짧아진 주소로의 Click Count 까지 해주니 써볼만 하다. 내가 런칭한 서비스가 얼마나 이용되고 있는지 확인 할수 있다는 것은 대단한 메리트인것같다. 반면 그 경로를 제외한 경로로의 접근은 카운트가 안돼니 이부분은 감안해서 데이터를 해석하면 되겟다. 이 서비스 사이트 주소는 https://goo.gl/ 아래와 같다. 원하는 주소를 입력하고 Shorten URL 을 입력하면 SHORTEN URLAll goo.gl URLs and click analytics are public and can be accessed by anyone 아래에 리스트가 만들어진다. Original URLCreat.. 2017. 9. 20.
반응형