일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 엑셀 여러 창
- 로그축소
- 파워빌더 팁
- 원격데스크톱
- 늑여탭
- 윈도우
- Windows
- 파워빌더
- svn
- 이루나
- 엑셀 2007 여러 개
- power builder
- RDP
- 로그파일 축소
- 엑셀 여러개 창 열기
- 늑대와여우
- 엑셀 두개 창 열기
- ㅗ기
- 테이블 명세서
- MSSQL
- Shrink log
- Excel
- 카달로그뷰
- 엑셀 참조창
- 이루나전기
- mssql 로그축소
- 데이터윈도우
- 엑셀 창모드
- 이클립스
- 엑셀 두개 창
- Today
- Total
목록MSSQL (11)
why don't do your best
/********************************************** 테이블의 컬럼정보 보기 **********************************************/ 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 형태의..
가끔 홑따옴표를 문자열처럼 쿼리해야 할 때가 있다. 그때 홑따옴표를 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 에서 테이블명을..
CREATE PROC [dbo].[sp_lock2] ( @dbname sysname = NULL, @spid int = NULL ) AS /************************************************************************************ Copyright © 2001 Narayana Vyas Kondreddi. All rights reserved. Purpose: To display detailed lock information Written by: Narayana Vyas Kondreddi Tested on: SQL Server 7.0 and SQL Server 2000 Date modified: August-13-2001 12:00 AM Examp..