Delete, Remove or Drop Oracle Stored Packages with Drop Package 삭제, 드롭 오라클에 저장 패키지를 제거하거나 드롭 패키지
Oracle Package is an object in Oracle database that allows developers and designers to group procedures and functions into common groups, typically based upon their functionality. 오라클 패키지는 오라클 데이터베이스에서 개체를 그룹화하는 절차와 기능을 통해 개발자와 디자이너를 일반적인 그룹을, 일반적으로 그들의 기능을 기반으로합니다. Package can be treated as the container for functions and procedures. 패키지 수있습니다 컨테이너에 대한 기능과 절차로 처리됩니다. A package consists of two sections which is the package specification (export script file will be in .pks extension) which must be declared first and contains a definition of any objects that can be referenced from outside of the package. 2 개의 섹션을 구성하는 패키지이 패키지는 사양 (수출 스크립트 파일을 될 수있을거야. pks 확장 기능)을 선언해야합니다 첫 번째를 포함하는 모든 개체를 정의 패키지의 외부에서 참조할 수있습니다. The other section is a package body (export SQL script file will be in .pkb extension) that contains the implementation of the objects or stored procedures within the package. 나머지 다른 섹션은 패키지 본문 (수출 sql 스크립트 파일을 될 수있을거야. pkb 확장)을 포함하는 개체 또는 저장 프로 시저의 구현의 패키지를합니다. With package, a procedure can be hidden inside the package by not declaring them in the package specification. 와 패키지, 프로 시저를 선언하지 않기 수있습니다 패키지 내부에 숨겨진 공간에서 그들을 패키지를 사양합니다.
At same time you may no longer need a package, and wish to remove, delete, or drop the package from the Oracle database. 같은 시간에 더 이상 필요하지 않습니다 패키지 수있습니다, 그리고 소원을 제거, 삭제 또는 무기를 패키지는 오라클 데이터베이스를합니다. To do so, simply use the DROP PACKAGE SQL command statement from SQL*Plus or Toad or other database too to drop a stored package. 이를 위해서는 단순히 계산서를 사용하여 명령을 내려 패키지를 sql sql * 플러스 또는 두꺼비 또는 다른 데이터베이스에 저장 패키지를 너무을 떨어뜨릴 수있습니다.
Syntax of the Drop Package 구문의 드롭 패키지
DROP PACKAGE [BODY] [schema.]package_name; 드롭 패키지에 대한 [몸] [스키마를합니다.] 패키지;
The optional BODY parameter is specified when you want to drop only the body of the package. 옵션 몸 매개 변수를 지정하려는 경우에 드롭 전용의 본문에 패키지를합니다. If this option is omitted, Oracle drops both the body and specification of the package. 이 옵션을 생략, 오라클되었습니다 본문과 사양을 모두의 패키지를합니다. If the package to drop is in your own schema, then there is no need to specify the scheme containing the package too, else you will need to put in the appropriate schema name. 귀하의 경우에는 자신의 스키마를 패키지를 드롭은 다음을 포함 필요가 없다 패키지를 지정하는 방식도 다른 사람이 필요에 적절한 스키마 이름을 넣어합니다. Beside, you must have the DROP ANY PROCEDURE system privilege too. 옆에, 당신 드롭 어떠한 절차를 시스템 권한이 있어야합니다 너무합니다.
Note: Do not use this statement to remove a single object from a package. 참고 사항 :이 계산서를 사용하지 마십시오에서 단일 개체를 제거하려면 패키지를합니다. Instead, re-create the package without the object using the CREATE PACKAGE and CREATE PACKAGE BODY SQL statements, or by using the SQL command with the OR REPLACE clause. 대신에, 다시 - 창조하는 패키지를하지 않고 해당 개체를 사용하여 sql 명령문 작성 패키지 및 패키지 본문을 작성, 또는 sql 명령을 사용하여하거나 대체 조항을합니다.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 중요 사항 : 이것은 기계 번역 페이지는 "있는 그대로"제공하지 않고 보증합니다. Machine translation may be difficult to understand. 기계 번역을 이해하기 어려울 수있습니다. Please refer to 를 참조하시기 바랍니다 original English article 원래 영어 자료 whenever possible. 언제 수있습니다.
Share and contribute or get technical support and help at 를 공유하고 기술 지원 및 도움을 공헌하지 않는다면 My Digital Life Forums 내 디지털 라이프 공개 토론 . 합니다.
Related Articles 관련 기사
- ORA-02449 Oracle Drop Table Error 오라 - 02449 오라클 드롭 테이블 오류
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile 오라클 데이터베이스 테이블 공간 및 복구하는 방법을 드롭 실수로 데이터 파일을 삭제
- How to Remove and Drop Datafiles from Tablespace in Oracle Database 앤 드롭 데이터 파일을 제거하는 방법에 오라클 데이터베이스의 테이블에서
- Manual and Clean Uninstall Oracle for Windows 오라클에 대한 매뉴얼 및 청소를 제거 windows
- Gmail Delete Button gmail 삭제 버튼을
- Oracle Database Link 오라클 데이터베이스 링크
- Oracle Database Import Error 3113/3114 오라클 데이터베이스를 수입 오류 3,114분의 3,113
- ORA-01502 Oracle Index in Unusable State 오라 - 01502 오라클 색인을 사용할 수 없게 상태
- Edit Internet Explorer Typed URLs in Address Bar Dropdown List 인터넷 탐색기 주소 표시줄에 입력한 링을 수정 드롭 다운 목록
- Change Oracle Database User Password 오라클 데이터베이스 사용자 비밀 번호 변경


















