출처 : http://ksevindik.blogspot.com/2008/04/ora-12519-when-using-oracle-xe.html
After overcoming this problem, I came up with a Turkish character encoding problem within my Hibernate generated sql statements but I am not hundred percent sure if I installed Oracle XE to deal with non latin characters appropriately. Anyway, it is easy to get rid of such encoding problems by setting user.language and user.country system properties to en and US consecutively.
ORA-12519 When Using Oracle XE
I recently installed Oracle XE on my laptop and tried to run our project which normally uses Oracle 10g in our company. After creating a db user and enabling it, I created tables, sequences, triggers and stored procedures etc by running db init scripts through ant without any problem. When it came to starting application in application server, I got "ORA-12519, TNS:no appropriate service handler found" messages. Thanks to this and this blog entries to reach at a quick solution. The problem was a bug in how Oracle XE handles monitoring processes, and you need to execute "ALTER SYSTEM SET PROCESSES=150 SCOPE=SPFILE;" statement and then restart your database to get rid of it.
After overcoming this problem, I came up with a Turkish character encoding problem within my Hibernate generated sql statements but I am not hundred percent sure if I installed Oracle XE to deal with non latin characters appropriately. Anyway, it is easy to get rid of such encoding problems by setting user.language and user.country system properties to en and US consecutively.
'데이타베이스 > 오라클' 카테고리의 다른 글
ORA-12519, TNS:no appropriate service handler found (1) | 2010.03.02 |
---|---|
오라클에서 특정 컬럼의 인코딩만 변경해서 넣거나 가져오기 (0) | 2008.11.24 |
시스템 성능에 큰 영향을 미치는 상위 8개 INIT.ORA 파라미터 (0) | 2008.08.28 |
오라클 제약조건에 따른 cascade 삭제 처리 (0) | 2008.03.20 |
오라클 Merge 키워드 사용법 (0) | 2008.01.21 |