Oracle常见系统包及常用方法
一、dbms_metadata.get_ddl:生成数据库对象的ddl信息: 二、dbms_stats用于搜集,查看,修改数据库对象的优化统计信息. exec dbms_
一、dbms_metadata.get_ddl:生成数据库对象的ddl信息:
二、dbms_stats用于搜集,查看,修改数据库对象的优化统计信息.
exec dbms_stats.gather_schema_stats('stud');
exec dbms_stats.gather_index_stats('stud','emp_idx');
三、DBMS_OUTPUT:用于输入和输出信息
首先,使用DBMS_OUTPUT.ENABLE激活本包,如果没有被激活,将无法调用本包的其它其余过程和函数。
但如果在SQL*PLUS中使用SERVEROUTPUT选项,,则没有必要使用该过程。
四、DBMS_JOB:用于安排和管理作业队列,通过使用作业,可以使Oracle数据库定期执行特定的任务
设定任务使用dbms_job.submit(job out int,what in varchar2 next_date in date,interval)
五、DBMS_UTILITY :在过程中执行ddl语句,或者取得数据库各对象之间依赖关系
执行ddl语句
六、DBMS_DDL:提供了在PL/SQL块重新编译过程、函数和包(alter_complie),以及分析表、索引、簇并生成统计数据(analyze_object)的方法。
七、UTL_INADDR:用于取得主机名和ip地址
用于取得指定主机所对应的ip地址:select utl_inaddr.get_host_address('sjz06') ip from dual;
八、DBMS_RANDOM:提供了内置的随机数生成器,可以用于快速生成随机数
九、UTL_FILE:提供了在操作系统层面上对文件系统中文件的读写功能
在引用文件的时候,要使用到一个文件句柄,来表示对文件的读或写。文件句柄是通过包UTL_FILE中名称为UTL_FILE.FILE_TYPE的公有变量来定义的。
对于文件系统上目录的引用是通过使用目录名称,或者由CREATE DIRECTORY命令为目录分配的化名来实现的。
CREATE DIRECTORY source AS 'd:/source';
CREATE DIRECTORY target AS 'd:/target';
Grant read,write on directory source to ods_es;
Grant read,write on directory target to ods_es;
DECLARE v_getfile UTL_FILE.FILE_TYPE;
v_sou_dir VARCHAR2(40) := 'source';
v_sou_file VARCHAR2(30) := 'source.csv';
v_tar_dir VARCHAR2(40) := 'source';
v_tar_file VARCHAR2(30) := 'target.csv';
v_eachline VARCHAR2(400);
v_count INTEGER := 0;
BEGIN
UTL_FILE.FCOPY(v_sou_dir,v_sou_file,v_tar_dir,v_tar_file);
v_getfile := UTL_FILE.FOPEN(v_tar_dir,v_tar_file,'w');
DBMS_OUTPUT.PUT_LINE('以下是复制文件内容:''' || v_tar_file || '''');
LOOP
UTL_FILE.GET_LINE(v_getfile,v_eachline);
DBMS_OUTPUT.PUT_LINE(v_eachline);
v_count := v_count + 1;
END LOOP;
EXCEPTION
WHEN NO_DATA_FOUND THEN UTL_FILE.FCLOSE(v_getfile);
DBMS_OUTPUT.PUT_LINE(v_count || '行记录');
WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('SQLERRM: ' || SQLERRM);
DBMS_OUTPUT.PUT_LINE('SQLCODE: ' || SQLCODE);
END;
十、DBMS_PIPE:用于在同一例程(实例)的不同会话之间进行通信。比如连接到同一个数据库的两个独立会话之间可以通过管道进行通信,另外也可以在存储过程和Pro*C之间进行通信,这样就大大地增强了PL/SQL的处理能力。
--------------------------------------分割线 --------------------------------------
在CentOS 6.4下安装Oracle 11gR2(x64)
Oracle 11gR2 在VMWare虚拟机中安装步骤
Debian 下 安装 Oracle 11g XE R2
--------------------------------------分割线 --------------------------------------
本文永久更新链接地址:

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

HTML cannot read the database directly, but it can be achieved through JavaScript and AJAX. The steps include establishing a database connection, sending a query, processing the response, and updating the page. This article provides a practical example of using JavaScript, AJAX and PHP to read data from a MySQL database, showing how to dynamically display query results in an HTML page. This example uses XMLHttpRequest to establish a database connection, send a query and process the response, thereby filling data into page elements and realizing the function of HTML reading the database.

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

Analysis of the basic principles of the MySQL database management system MySQL is a commonly used relational database management system that uses structured query language (SQL) for data storage and management. This article will introduce the basic principles of the MySQL database management system, including database creation, data table design, data addition, deletion, modification, and other operations, and provide specific code examples. 1. Database Creation In MySQL, you first need to create a database instance to store data. The following code can create a file named "my

PHP is a back-end programming language widely used in website development. It has powerful database operation functions and is often used to interact with databases such as MySQL. However, due to the complexity of Chinese character encoding, problems often arise when dealing with Chinese garbled characters in the database. This article will introduce the skills and practices of PHP in handling Chinese garbled characters in databases, including common causes of garbled characters, solutions and specific code examples. Common reasons for garbled characters are incorrect database character set settings: the correct character set needs to be selected when creating the database, such as utf8 or u
