어느 가을날의 전환점
Oracle8i Server 이상에서 부터 지원 하는 Temp Table은 사용자의 트랜잭션 또는 세션 내에서만 Temp Table의 데이터를 활용 할 수 있으며 사용자 세션이 중단되면 Temp Table의 있는 모든 내용은 자동으로 삭제 된다. Temp Table을 사용하는 목적은 큰 정렬 작업이나, 필요할 경우 임의적으로 생성 하여 사용 할 수 있다. Temp Table의 특징Temp Table 데이터는 해당 세션이나 트랜잭션에서만 볼 수 있다.Global Temp Table은 모든 세션에서 볼 수 있다.Local Temp Table은 이를 생성한 세션이 끝나면 더 이상 유지되지 않는다.Temp Table 데이터는 세션이 사용하는 정렬 공간 내에 저장되며, 정렬 공간이 데이터를 수용하기에 충분하지 않..
[오류]ORA-29275: 부분 다중 바이트 문자 ErrorORA-29275: partial multibyte character [원인]오라클 서버의 CHARACTERSET 과 클라이언트의 CHARACTERSET 값이 다를 경우 발생SQL> select parameter, value from nls_database_parameters where parameter like '%CHARACTERSET%' [해결방안]1) 컬럼의 CharacterSet 변환CONVERT(COLUMN NAME,'NLS_CHARACTERSET','NLS_CHARACTERSET'); 1. 서버 Character Set 변경 : 불가능 2. 클라이언트 Character Set 변경 : regedt32 실행 후, NLS_LANG값을 찾..
Title No prompt for substitution variable. How do you enable/disable prompt for variable substitution?Description When running a script in the editor, substitution variables may be used. But when it is executed, the user is not prompted for the variable value. How do you enter in a value?In some situations a user may want to enable/disable variable substitution in the SQL Editor depending on whe..