摘要: expdp old_user_name/password directory=dir_name dumpfile=xxxx.dmp tables=table1_name,table2_name impdp system/oracle directory=dir_name dumpfile=xxxx. 阅读全文
posted @ 2019-08-27 16:04 张瑞远 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 转载自https://www.okcode.net/article/610 2.1视图合并 2.1.1 视图合并环境准备 create table tests1 as select * from dba_objects; create table tests2 as select * from db 阅读全文
posted @ 2019-08-27 15:47 张瑞远 阅读(909) 评论(0) 推荐(0) 编辑
摘要: 因为pgsql中没有存储过程和包,所以类似功能通过函数来实现 PostgreSQL的存储过程简单入门 http://blog.csdn.net/rachel_luo/article/details/8073458 存储过程事物 http://www.php100.com/manual/Postgre 阅读全文
posted @ 2019-08-27 10:18 张瑞远 阅读(10808) 评论(0) 推荐(0) 编辑
摘要: PostgreSQL 提供了丰富的数据类型。用户可以使用 CREATE TYPE 命令在数据库中创建新的数据类型。PostgreSQL 的数据类型被分为四种,分别是基本数据类型、复合数据类型、域和伪类型。 基本数据类型是数据库内置的数据类型,包括integer、char、varchar等数据类型。表 阅读全文
posted @ 2019-08-27 10:15 张瑞远 阅读(18389) 评论(0) 推荐(0) 编辑