반응형

프로시저 확인

select * from user_objects where object_type = 'PROCEDURE';


프로시저/함수 삭제

DROP PROCEDURE 프로시저명;

DROP FUNCTION 함수명;


INVALID OBJECT 확인

select * from dba_objects where STATUS  = 'INVALID';


재컴파일을 위한 스크립트 실행

@/bridgetec/trdata.sql



오브젝트 타입 종류

INDEX

PROCEDURE

TABLE

VIEW

FUNCTION

DATABASE LINK

SYNONYM

LOB

SEQUENCE


반응형
블로그 이미지

민오라방구

개발 , 여행, 일상 아직 배울게 많은 개발자

,
반응형

java.lang.IllegalStateException: More than the maximum number of request parameters (GET plus POST) in jBoss AS 7.1



Following error occurs while submitting the request in jBoss AS 7.1.  

java.lang.IllegalStateException: More than the maximum number of request parameters (GET plus POST) for a single request ([512]) were detected. Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector.

Explanation: jBoss limits the number of parameters to be sent to the server. The default value for the number of parameters is 512. I had a scenario where the number of fields were getting increased because of the business, which I could not control. I made the configuration to accept more number of parameters. Add the following piece of code in the standalone.xml file. 




<extensions> ....
</extensions>
 <system-properties>
        <property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="2000"/>
  </system-properties>
<management> ....
</management>


반응형

'개발 > WAS' 카테고리의 다른 글

apache + tomcat 로드밸런싱 & 세션 클러스터링  (0) 2021.03.16
Linux Jeus7 설치  (0) 2018.08.02
블로그 이미지

민오라방구

개발 , 여행, 일상 아직 배울게 많은 개발자

,
반응형

CentOS의 log 기본 위치는 /var/log 디렉토리에 위치해 있다.



1. /var/log/messages

- 기본적인 시스템 로그

- 관련 프로그램 : syslogd


2. /var/log/maillog

- 메일 로그 파일

3. /var/log/secure
로그인 정보 로그 파일(SSH 등)


4. /var/log/boot.lo

부팅 로그 파일(데몬의 실행 상태 기록)


5. /var/log/lastlog

로그인 정보 로그 파일(마지막 로그인/ 호스트/ 포트 등)


6. /var/log/dmesg

시스템 부팅 로그 파일


7. /var/log/cron
cron에 대한 로긍 파일


8. /var/log/wtmp

로그인 정보가 기록된 로그 파일

last root < root계정에 대한 로그

last –n 10 root < root 계정에 대한 최근 접속 정보 10건


9. httpd 로그

- /var/log/httpd/access_log

- /var/log/httpd/error_log


반응형

'개발 > Linux' 카테고리의 다른 글

리눅스 폴더(디렉토리) / 파일 복사 cp 명령어  (0) 2017.12.11
블로그 이미지

민오라방구

개발 , 여행, 일상 아직 배울게 많은 개발자

,