--备份表数据 select * from t_owners; --创建备份表 create table t_owners_copy ( id number, name varchar2(100), addressid number, housenumber varchar2(100), water... ...
分类:
数据库 时间:
2018-12-09 13:57:42
阅读次数:
268
--检查约束 create table test1( id number(10) primary key, email varchar2(10) check (email like '%@%') ) drop table test1 insert into test1 values(1,'12@6.... ...
分类:
数据库 时间:
2018-12-09 13:54:09
阅读次数:
164
分区概念 分区机制 --range --hash --list --组合分区 --间隔分区 引用分区 管理分区 分区索引 行移动 1 分区概述 1.1 提高可用性(每个分区的独立性),优化器能消除分区,出现错误时的停机时间的减少 1.2 减少管理负担,一个大对象分成多个小工作单元 1.3 改善语句性 ...
分类:
数据库 时间:
2018-12-03 20:20:35
阅读次数:
252
--release_step生产批 --created by jenrry SET serveroutput on DECLARE x_return_status VARCHAR2 (1); l_exception_material_tbl gme_common_pvt.exceptions_tab... ...
分类:
数据库 时间:
2018-11-26 17:32:07
阅读次数:
178
--创建生产批 --created by jenrry DECLARE x_message_count NUMBER; x_message_list VARCHAR2 (2000); x_return_status VARCHAR2 (1); p_batch_header gm... ...
分类:
数据库 时间:
2018-11-26 17:26:03
阅读次数:
255
DECLARE l_api_version_number NUMBER := 1; l_return_status VARCHAR2(2000); l_msg_count NUMBER; l_msg_data VARCHAR2(2000); /*****************INPUT VARIA... ...
分类:
数据库 时间:
2018-11-26 17:23:44
阅读次数:
245
--发放生产批 --created by jenrry DECLARE x_return_status VARCHAR2 (1); l_exception_material_tbl gme_common_pvt.exceptions_tab; l_batch_header_rec gme_batch... ...
分类:
数据库 时间:
2018-11-26 17:22:25
阅读次数:
247
--complete_batch --created by jenrry SET serveroutput on DECLARE x_return_status VARCHAR2 (1); l_exception_material_tbl gme_common_pvt.exceptions_tab;... ...
分类:
数据库 时间:
2018-11-26 17:18:13
阅读次数:
169
DECLARE l_return_status VARCHAR2(300); l_msg_count NUMBER; l_msg_data VARCHAR2(300); l_rec_type hz_cust_account_v2pub.cust_account_rec_type; CURSOR cu... ...
分类:
数据库 时间:
2018-11-23 14:27:22
阅读次数:
205
declare x_return_status VARCHAR2(150); x_msg_count NUMBER; x_msg_data VARCHAR2(2000); x_profile_id NUMBER; l_location_id NUMBER; l_ob... ...
分类:
数据库 时间:
2018-11-23 14:26:43
阅读次数:
250