Convert numbers to Indian Rupees format in Oracle Forms / Reports.Create the below mention function in Oracle Forms / Reports and call it with passing... ...
分类:
数据库技术 时间:
2016-12-26 00:13:32
收藏:
0 评论:
0 赞:
0 阅读:
300
Add combo list / drop down list item element at runtime in Oracle forms.SyntaxPROCEDURE ADD_LIST_ELEMENT(list_name VARCHAR2,list_index, NUMBERlist_lab... ...
分类:
数据库技术 时间:
2016-12-26 00:12:56
收藏:
0 评论:
0 赞:
0 阅读:
261
A very nice ebook on building reports in Oracle fusion middleware 11g. This manual is intended for anyone who uses Oracle Reports to build reports. Th... ...
分类:
数据库技术 时间:
2016-12-26 00:04:51
收藏:
0 评论:
0 赞:
0 阅读:
379
Using Call_Form in Oracle D2kCALL_FORM examples/* Example 1:** Call a form in query-only mode.*/BEGINCALL_FORM(’empbrowser’, no_hide, no_replace, quer... ...
分类:
数据库技术 时间:
2016-12-26 00:03:26
收藏:
0 评论:
0 赞:
0 阅读:
256
Suppose you want to scan a tabular grid block (loop through all records in detail block) from top to bottom in Oracle forms. You can do this task by u... ...
分类:
数据库技术 时间:
2016-12-26 00:00:46
收藏:
0 评论:
0 赞:
0 阅读:
369
前段时间由于哪位黑客恶意攻击我的网站,导致万网直接把我的主机停用,只好换VPS,配制自然没有独立主机高了,远程桌面就要等好久,对于我 这个急性子的人来说无疑是受不了,所以琢磨换成linux性能应该好点。好了天研究,终于把整个环境配制好了。费话少说,直接下面的介绍。 一、编译nginx,然后下载ngi ...
分类:
数据库技术 时间:
2016-12-26 00:00:08
收藏:
0 评论:
0 赞:
0 阅读:
298
VC++连接MySQL数据库 常用的方式有三种:ADO、mysql++,mysql API ; 本文只讲述ADO的连接方式。 为什么要使用连接池? 对于简单的数据库应用,完全可以先创建一个常连接(此连接永远不关闭,直接数进程退出),但是这样做至少会引起两个问题:(1)资源竞争,多个数据库请求操作不能 ...
分类:
数据库技术 时间:
2016-12-25 23:59:16
收藏:
0 评论:
0 赞:
0 阅读:
435
1. 批量插入: 以数组的方式一次插入多个文档可以在单次TCP请求中完成,避免了多次请求中的额外开销。就数据传输量而言,批量插入的数据中仅包含一份消息头,而多次单条插入则会在每次插入数据时封装消息头数据。对于数据导入而言,我们可以使用mongoimport完成。 2. 数据库清除: > db.use ...
分类:
数据库技术 时间:
2016-12-25 23:58:11
收藏:
0 评论:
0 赞:
0 阅读:
373
When called from an On-Fetch trigger, initiates the default Form Builder processing for fetching recordsthat have been identified by SELECT processing... ...
分类:
数据库技术 时间:
2016-12-25 23:53:52
收藏:
0 评论:
0 赞:
0 阅读:
487
mongo增删改查show dbs 显示所有dbuse fengDb 转换到哪个db,没有这个db就自动新建一个这个dbdb 显示当前操作的dbdb.fengDb.insert({"name":"fengnovo"}) 在fengDb上增加一个记录db.dropDatabase() 删除当前db(f ...
分类:
数据库技术 时间:
2016-12-25 23:50:57
收藏:
0 评论:
0 赞:
0 阅读:
377
https://robomongo.org/download 非常小白的安装 自动安装完成。 启动MongoDB Mongodb启动教程 启动RoMongo 创建新的Mongodb 自定义db名称 连接 ok https://robomongo.org/download 非常小白的安装 自动安装完成 ...
分类:
数据库技术 时间:
2016-12-25 23:50:41
收藏:
0 评论:
0 赞:
0 阅读:
285
这几天在使用Laravel 开发一个系统。这个系统连2个数据库。一个名为blog,一个名为center。 center 数据库的作用是作为用户中心。可能会有其他几个系统相连,属于公用数据库。主要是用来用户登录认证。 blog 数据库的作用是放文章,不会牵扯到认证方面。 我的想法是使用center数据 ...
分类:
数据库技术 时间:
2016-12-25 23:50:17
收藏:
0 评论:
0 赞:
0 阅读:
238
Center window automatically in Oracle Forms 6i, use the following procedure by passing window name as parameter:ExamplePROCEDURE auto_centre (pwn in v... ...
分类:
数据库技术 时间:
2016-12-25 23:49:59
收藏:
0 评论:
0 赞:
0 阅读:
254
数据类型 简单原则:更小更好,简单就好,避免NULL 1)整型如int(10)括号中的值与存储大小无关 2)实数decimal比float与double占用更大存储空间且CPU不能直接对decimal进行计算 3)字符串列最大长度<=255varchar使用一字节保存长度,否则使用2字节。char( ...
分类:
数据库技术 时间:
2016-12-25 23:40:04
收藏:
0 评论:
0 赞:
0 阅读:
211
配置数据收集器: 1.创建登录名并映射角色 2.配置管理数据仓库 3.创建收集组、收集项 MSDB数据存储 sp_syscollector_create... 4.自动配置相关job 具体步骤: 创建好之后的图: 配置数据收集: 刷新如下图所示: 创建的方法: 具体用法参考: https://msd ...
分类:
数据库技术 时间:
2016-12-25 23:38:45
收藏:
0 评论:
0 赞:
0 阅读:
298
A user-named trigger is a trigger defined in a form by the developer. User-Named triggers do not automatically fire in response to a Form Builder even... ...
分类:
数据库技术 时间:
2016-12-25 23:33:13
收藏:
0 评论:
0 赞:
0 阅读:
212
Suppose you want to handle an error in oracle forms and want to display custom error message for that error, but also you want to customize more for a... ...
分类:
数据库技术 时间:
2016-12-25 23:32:45
收藏:
0 评论:
0 赞:
0 阅读:
326
Suppose you want to give the data backup option in Oracle Forms application to some client users, where you have installed Oracle 11g client or direct... ...
分类:
数据库技术 时间:
2016-12-25 23:31:16
收藏:
0 评论:
0 赞:
0 阅读:
305
You want to connect multiple databases in oracle forms to perform certain tasks, for example you need to execute ddl or dml statements against databas... ...
分类:
数据库技术 时间:
2016-12-25 23:25:10
收藏:
0 评论:
0 赞:
0 阅读:
342
我们知道MySQL在安装的时候需要我们设置一个数据库默认的用户名和密码,mongodb也不例外,不过mongodb是默认的没有设置访问限制的,不需要输入用户名和密码都可以访问的,但是这样会十分的不安全,我们需要手动的为mongodb加上权限限制命令。 首先建立一个默认的账户 Use admin Db ...
分类:
数据库技术 时间:
2016-12-25 23:24:10
收藏:
0 评论:
0 赞:
0 阅读:
329