일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 로그파일 축소
- 로그축소
- 이루나전기
- 엑셀 두개 창 열기
- 이루나
- 엑셀 여러개 창 열기
- 파워빌더
- 엑셀 참조창
- 엑셀 여러 창
- 엑셀 2007 여러 개
- 윈도우
- Shrink log
- svn
- 카달로그뷰
- 데이터윈도우
- Windows
- RDP
- 엑셀 두개 창
- ㅗ기
- 테이블 명세서
- 원격데스크톱
- 이클립스
- 파워빌더 팁
- MSSQL
- Excel
- 늑여탭
- power builder
- 엑셀 창모드
- mssql 로그축소
- 늑대와여우
- Today
- Total
목록카달로그뷰 (4)
why don't do your best
너무 방대한 데이터가 있는경우 select count(1) from 테이블 명 오래걸린다. SELECT distinct max(a.rows) FROM SYSINDEXES a, SYSOBJECTS b WHERE a.id = b.id and b.xtype = 'U' and b.name = '테이블명' 요렇게 해보자~
/********************************************** 테이블의 컬럼정보 보기 **********************************************/ declare @tb_name nvarchar(30) declare @tb_Id int /******** Input Table Name ********/ set @tb_name = 'iniop01t' select @tb_id = id from sysobjects where name = @tb_name select a.colid as NO , a.name as ColumnName , b.name as DataType , CASE WHEN b.name IN ('numeric', 'decimal') --18.5 형태의..
--설명이 없는(Null) 테이블 찾아내기 Select c.name As TableOwner --테이블 소유자 ,a.name As TableName --테이블 명 ,b.name As ColumnName --컬럼 명 ,d.name As DataType --데이터 타입 ,b.length As Length --길이 ,e.value As ColumnDescription --컬럼 Description ,f.indid As IsPrimaryKey --PrimaryKey From sys.sysobjects a Inner Join sys.syscolumns b On a.id = b.id Inner Join sys.sysusers c On a.uid = c.uid Inner Join sys.systypes d On b...
가끔 홑따옴표를 문자열처럼 쿼리해야 할 때가 있다. 그때 홑따옴표를 2개를 연달아 넣거나 3개를 넣거나 어렵고 모르겠다 그냥 char(39) 로 처리하자 selelct char(39) + '쥐쥐정' + char(39) from dual 결과 '쥐쥐정' 요딴식 으로 나올 듯 하다. 카달로그뷰 를 이용해서 쿼리할때도 이런식이다. select 'select * from ' + b.name +' where ' + a.name + + ' = ' +char(39) + '00133' + CHAR(39) from syscolumns a, sysobjects b where a.id = b.id and b.xtype = 'U' and a.name in ('cscd','customcd') sysobjects 에서 테이블명을..