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
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
官方网站 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的索引几乎与传统的关系型数据库一模一样,这其中也包括一些基本的优化技巧。下面是创建索引的命令: > db.test.ensureIndex({"username":1}) 可以通过下面的名称查看索引是否已经成功建立: > db.test.getIndexes() 删除索 ...
分类:
数据库技术 时间:
2016-12-25 23:13:50
收藏:
0 评论:
0 赞:
0 阅读:
387
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系统,工作中需要用oracle数据库,而数据库是公司IT的DBA进行管理和维护的。 我们只需要连接上去进行使用就可以了,于是我就在自己的机器上安装了oracle client x64和PL/SQL程序,oracle client也设置了环境变量等配置,但打开plsql的时 ...
分类:
数据库技术 时间:
2016-12-25 23:07:41
收藏:
0 评论:
0 赞:
0 阅读:
256
mysql单向复制为了提高主从服务器的健壮性,我们选择了mysql单向复制的方法,当主服务器宕机时,从服务器依旧可以接管,并且保持数据的相对完整性,而从服务器备份的时候不会干扰到主服务器的工作,可以说是一个强大的功能。原理:将主服务器内数据更新封装为二进制文件的形式..
分类:
数据库技术 时间:
2016-12-25 21:19:12
收藏:
0 评论:
0 赞:
0 阅读:
263
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 FormsDescriptionMaintained for backward compatibility only. For new applications, you should use theSET_ITEM_INSTA... ...
分类:
数据库技术 时间:
2016-12-25 21:05:48
收藏:
0 评论:
0 赞:
0 阅读:
294
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
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
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
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 DescriptionFires during Execute Query or Count Query processing, just before Form Builder constructs an... ...
分类:
数据库技术 时间:
2016-12-25 20:57:05
收藏:
0 评论:
0 赞:
0 阅读:
207
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 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
SQL Server: MySQL: 很显然在MySQL中,插入表数据时一定要加列名。 ...
分类:
数据库技术 时间:
2016-12-25 20:53:16
收藏:
0 评论:
0 赞:
0 阅读:
117
问题: 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
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