반응형


SQL Server 테이블의 특정 컬럼의 문자열 변경

UPDATE [table]

SET [column] = REPLACE([column], '/old/', '/new/')


update my_table

set path = replace(path, 'old', 'new')


반응형

서버 개체 오류 ASP 0177 : 80004005

Development 2015. 7. 2. 11:29 posted by CecilDeSK
반응형

IIS7 Classic ASP 상에서 COM+ 응용프로그램 연결 할때  발생가능한 오류


서버 개체 오류 'ASP 0177 : 80004005'

Server.CreateObject 실패

/Config/Connection.inc, 줄 29

80004005


Server object error 'ASP 0177 : 80004005'

Server.CreateObject Failed

/Config/Connection.inc,line xx

80004005





1. 제어판 -> 관리도구 -> 구성요소서비스


2. 구성요소서비스 -> 컴퓨터 -> 내컴퓨터 -> COM+응용프로그램


3. 오류가 발생한 컴퍼넌트에 마우스 오른쪽 버튼 클릭하고 "속성" 선택 속성창에서 "풀링 및 재생 " 탭으로 이동

"풀크기" 1보다 큰값으로 변경 여기서는 3으로 변경



1. Go to Control Panel > Administrative Tools > Component Services.

2. In the tree, navigate through Component Services > My Computer > COM+ Applications and locate your custom component.

3. Right-click on the component and get Properties.

On the Pooling & Recyling property page tab, set the Pool Size to a number greater than 1, to match the number of potential application pools that will be accessing the component at the same time, from IIS or elsewhere.



COM+응용프로그램 풀링및재생 pool sizeOn the Pooling & Recyling property page tab, set the Pool Size to a number greater than 1, to match the number of potential application pools that will be accessing the component at the same time, from IIS or elsewhere.


반응형

MS SQL SERVER 테이블 복사

Development 2015. 7. 1. 14:51 posted by CecilDeSK
반응형

MS SQL SERVER 테이블 복사


Table 생성 & 데이터 복사
SELECT * INTO 생성될 테이블 FROM 원본테이블명
Table 구조만 복사
SELECT * INTO 생성될 테이블명 FROM 원본테이블명 WHERE 1<>1
Table 존재하는 경겨 데이터만 복사
INSERT INTO 복사될테이블명 SELECT * FROM 원본테이블명
Table 존재하고 특정 데이터만 복사할경우
INSERT INTO 복사될테이블명 SELECT * FROM 원본테이블명 WHERE 검색조건


반응형

Slickedit 라인 넘버 표시(Viewing Line Numbers)

Slickedit 2015. 6. 23. 17:04 posted by CecilDeSK
반응형

화면 왼쪽에 라인 넘버를 표시하고자 할때는 

임시: "View" -> "Line Numbers" 체크

특정언어: "Tools" -> "Options"에서  "Language" 노드 "View" 메뉴 에 "Line numbers" 선택

모든언어: "Tools" -> "Quick Start Configuration"메뉴  "Coding" 노드의  아래부분 "Display line numbers for all languages"
           체크 해준다

커맨드라인: "view_line_numbers_toggle" 명령으로 토글 가능하다.


반응형