首页 > 数据库技术
An Example of On-Error Trigger in Oracle Forms
I wrote this trigger around 4 years ago to handle errors in an application based on Oracle Forms 6i. This trigger handles all errors with some custom ... ...
分类:数据库技术   时间:2016-12-25 23:16:14    收藏:0  评论:0  赞:0  阅读:275
Linux-NoSQL之MongoDB
1.mongodb介绍 2.yum安装 搭建yum源: vim /etc/yum.repos.d/mongodb-org-3.0.repo [mongodb-org-3.0] name=MonogoDB Repository baseurl=http://repo.mongodb.org/yum/r ...
分类:数据库技术   时间:2016-12-25 23:15:21    收藏:0  评论:0  赞:0  阅读:246
CentOS 安装MongoDB
官方网站 http://www.mongodb.org/ 下载 http://www.mongodb.org/downloads 安装教程 http://docs.mongodb.org/manual/tutorial/install-mongodb-on-linux/ 这个是针对linux服务器的 ...
分类:数据库技术   时间:2016-12-25 23:14:47    收藏:0  评论:0  赞:0  阅读:336
MongoDB学习笔记(索引)
一、索引基础: MongoDB的索引几乎与传统的关系型数据库一模一样,这其中也包括一些基本的优化技巧。下面是创建索引的命令: > db.test.ensureIndex({"username":1}) 可以通过下面的名称查看索引是否已经成功建立: > db.test.getIndexes() 删除索 ...
分类:数据库技术   时间:2016-12-25 23:13:50    收藏:0  评论:0  赞:0  阅读:387
Oracle Forms 10g Tutorial Ebook Download - Oracle Forms Blog
A step by step tutorial for Oracle Forms 10g development. This guide is helpful for freshers in Oracle forms 10g. To download this ebook click the bel... ...
分类:数据库技术   时间:2016-12-25 23:12:04    收藏:0  评论:0  赞:0  阅读:400
解决中64位Win7系统上PLSQL无法连接ORACLE的方法(PLSQL无法识别ORACLE_HOME的配置)
最近新安装了64位的Win7系统,工作中需要用oracle数据库,而数据库是公司IT的DBA进行管理和维护的。 我们只需要连接上去进行使用就可以了,于是我就在自己的机器上安装了oracle client x64和PL/SQL程序,oracle client也设置了环境变量等配置,但打开plsql的时 ...
分类:数据库技术   时间:2016-12-25 23:07:41    收藏:0  评论:0  赞:0  阅读:256
mysql的单向复制
mysql单向复制为了提高主从服务器的健壮性,我们选择了mysql单向复制的方法,当主服务器宕机时,从服务器依旧可以接管,并且保持数据的相对完整性,而从服务器备份的时候不会干扰到主服务器的工作,可以说是一个强大的功能。原理:将主服务器内数据更新封装为二进制文件的形式..
分类:数据库技术   时间:2016-12-25 21:19:12    收藏:0  评论:0  赞:0  阅读:263
将Mssql迁移至Mysql的几种方法
1、自己写程序,本种方法相对麻烦,但处理起来相对灵活,如果需要对转换的数据进行处理,用本种方法比较合适,此方法不适合进行大数据迁移,不仅效率低,而且需要的内存比较大; 2、通过BCP导出txt或者csv格式的,然后在Mysql端导入;这种方式一次只能处理一个表,不过可以写成批处理,本方法可能会遇到编 ...
分类:数据库技术   时间:2016-12-25 21:09:53    收藏:0  评论:0  赞:0  阅读:234
数据库主键
在我们的数据库设计中,不可逃避的就是数据库表的主键,可能有很多朋友没有深入思考过,主键的设计对整个数据库的设计影响很大,因此我们不得不要重视起来。 主键的必要性 : 在有些数据库中,虽然主键不是必需的,但最好为每个表都设置一个主键,不管是单主键还是复合主键。它存在代表着表结构的完整性,表的记录必须得 ...
分类:数据库技术   时间:2016-12-25 21:08:45    收藏:0  评论:0  赞:0  阅读:260
DISPLAY_ITEM built-in in Oracle D2k Forms
DISPLAY_ITEM built-in in Oracle D2k FormsDescriptionMaintained for backward compatibility only. For new applications, you should use theSET_ITEM_INSTA... ...
分类:数据库技术   时间:2016-12-25 21:05:48    收藏:0  评论:0  赞:0  阅读:294
Find Current Job Openings For Oracle Forms & Reports
Oracle Form & Reports developer jobs are always in demand, candidates who have Oracle D2k, Oracle Forms & Reports, PLSQL set of skills can find the jo... ...
分类:数据库技术   时间:2016-12-25 21:05:29    收藏:0  评论:0  赞:0  阅读:184
Reading Csv Files with Text_io in Oracle D2k Forms
Below is the example to read and import comma delimited csv file in oracle forms with D2k_Delimited_String package. This package is available in D2kdl... ...
分类:数据库技术   时间:2016-12-25 21:03:45    收藏:0  评论:0  赞:0  阅读:306
Using Post_Query Trigger in Oracle Forms
When a query is open in the block, the Post-Query trigger fires each time Form Builder fetches a record into a block. The trigger fires once for each ... ...
分类:数据库技术   时间:2016-12-25 21:00:40    收藏:0  评论:0  赞:0  阅读:259
Writing Text File From A Tabular Block In Oracle Forms
The example given below for writing text file or CSV using Text_IO package from a tabular block in Oracle Forms. Suppose there is a tabular grid data ... ...
分类:数据库技术   时间:2016-12-25 20:59:37    收藏:0  评论:0  赞:0  阅读:193
Pre-Query trigger in Oracle D2k / Oracle Forms
Pre-Query trigger in Oracle D2k / Oracle Forms DescriptionFires during Execute Query or Count Query processing, just before Form Builder constructs an... ...
分类:数据库技术   时间:2016-12-25 20:57:05    收藏:0  评论:0  赞:0  阅读:207
Using Text_IO To Read Files in Oracle D2k
Suppose you want to read a file from D2k client and want to store its content in Oracle database. But if you will insert row by row from client to ser... ...
分类:数据库技术   时间:2016-12-25 20:56:45    收藏:0  评论:0  赞:0  阅读:276
postgreSqL的序列sequence
PostgreSQL uses sequences to generate values for serial columns and serial columns are generally what is used for "auto-incrementing" columns in Postg ...
分类:数据库技术   时间:2016-12-25 20:54:50    收藏:0  评论:0  赞:0  阅读:207
MySQL的insert语句的区别
SQL Server: MySQL: 很显然在MySQL中,插入表数据时一定要加列名。 ...
分类:数据库技术   时间:2016-12-25 20:53:16    收藏:0  评论:0  赞:0  阅读:117
“psql: could not connect to server: Connection refused” Error when connecting to remote database
问题: I am trying to connect to a postgres database installed in a remote server using the following command: psql -h host_ip -U db_username -d db_name ...
分类:数据库技术   时间:2016-12-25 20:47:52    收藏:0  评论:0  赞:0  阅读:743
Pre-Update and Pre-Insert Trigger Examples For Oracle Forms
See also: Why And When To Use Pre-Update and Pre-Insert Triggers In Oracle FormsPre-Update Fires during the Post and Commit Transactions process, befo... ...
分类:数据库技术   时间:2016-12-25 20:45:45    收藏:0  评论:0  赞:0  阅读:299
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!