- 博客(79)
- 收藏
- 关注
转载 PM Daily - 20180603
1. EPM: Enterprises Project Management2. Manhattan Projectapplied project management and systems engineering i...
2018-06-03 21:29:11 158
转载 老毛病犯了
很久没回itpub博客了,我“胡汉三”回来了。 不知从何时开始(上个月?这个月?),老毛病又犯了. 调节,调节。 2018年6月3日,看到自己在1年前记下的东西,想想有些可笑,果...
2017-05-29 09:29:13 139
转载 GROUP_ID()的用法
(转载,原文地址:http://www.itpub.net/thread-1266395-1-1.html)在GROUP BY子句中多次使用一个列在GROUP BY子句中可以多次使用某个列,这样可以实现对数据的重新组织,或是按照...
2012-03-13 15:44:55 837
转载 Oracle的rollup、cube、grouping sets函数
(转载,原文地址:http://blog.csdn.net/huang_xw/article/details/6402396)Oracle的group by除了基本用法以外,还有3种扩展用法,分别是rollup、cube、gro...
2012-03-13 15:19:19 111
转载 TheApplicationOfTheInitialValueInForms6i
TheApplicationOfTheInitialValueInForms6i--Eric, Jun 14, 2009This chapter introduces the application of the initial...
2009-06-15 09:42:24 106
转载 TimingStatisticsInDifferentSqlplusVersion
TimingStatisticsInDifferentSqlplusVersion --Eric, Jun 13, 2009This chapter introduces the...
2009-06-15 09:39:33 97
转载 DifferenceBetweenSQLAndPLSQL
DifferenceBetweenSQLAndPLSQLScott Urman: 过程化的语言都是线性语言,例如PL/SQL,它们以Begin开始,以End结束。虽然这只是非常简化的定义,但是它指出了过程化语言与面向对象语言之间...
2009-06-15 09:38:20 123
转载 OracleNull
OracleNULL --Eric, Jun 14, 2009 PL/SQL treats a string of zero-length as a NULL.A zer...
2009-06-15 09:37:29 70
转载 OracleCharacter
OracleCharacterOracleCharacterDatatypeDatatype DefinitionVARCHAR2(size) Variable-length character...
2009-06-13 11:21:01 101
转载 从SQL语言的分类谈COMMIT和ROLLBACK的用法(摘)
从功能上划分,SQL语言可以分为DDL,DML和DCL三大类。 1. DDL(Data Definition Language) 数据定义语言,用于定义和管理 SQL 数据库中的所有对象的语言 ; CREAT...
2008-05-22 16:21:35 128
转载 The different between NULL and ''
We can insert NULL into a column of a table.There are two examples,let's see the difference.1、INSERT INTO table_na...
2008-04-10 19:22:49 107
转载 The different between DELETE TABLE AND TRUNCATE TABLE
TRUNCATE is faster than DELETE ,because it doesn't make a note of the change of the data.[@more@] ...
2008-04-10 19:18:12 73
转载 The usage of INSTR()
INSTR(表的某个字段,'外部传入的值') 1、INSTR(c1,c2[,n1[,n2]]) 返回c2在c1中位置l c1:原字符串l c2:要寻找的字符串l n1:查询起始位置...
2008-04-10 19:16:35 90
转载 About the REPORT name
If the report filename is test.rdf ,but the report name is test_1,then the complied report filename is test_1.rep...
2008-04-10 10:14:52 95
转载 The usage of Union & Union All
1、UNION 中的每个查询必须包含相同的列、表达式或聚集函数(不过各个列不需要以相同的次序列出)2、列数据类型必须兼容:类型不必完全相同,但必须是DBMS可以隐含转换的类型(例如不同的数值类型或不同的日期类型)The foll...
2008-04-09 18:59:24 100
转载 DISTINCT AND AVG()
If you use AVG() with distinct ,it will raise the average value.[@more@] ...
2008-04-07 15:03:37 111
转载 The usage of NULL with function
You can see the usage of NULL with function by the following scripts.FUNCTION:AVG()、COUNT()、SUM() AVG(): It doesn'...
2008-04-07 10:02:41 85
转载 FORM 6i 安装
很久没有安装过FORM了,因为自己电脑基本半个月做一次GHOST,所以,常用的软件,很少会安装多次,这几日,自己的同事,被FORM的安装折腾的够呛,后来将瑞星给卸掉,再安装,就很顺利,在此,想给安装FORM6i的朋友提个醒,如果...
2008-04-02 18:41:16 332
转载 Form中屏蔽默认功能键!
Form中屏蔽默认功能键![@more@]方法如下:1> 添加Form级触发器“KEY-OTHERS” 2〉在Form级触发器“KEY-OTHERS”中写如下代码: null;3〉 这样FORM程序运行后,大部分的功能键都...
2007-11-13 19:40:47 113
转载 One DOS command!
One DOS batch command can copy a source dir to object dir which will be auto named by the current date.[@more@]/**...
2007-11-08 10:04:54 87
转载 FORM开发知识1(网上找到的)
P.S http://slim119.itpub.net/post/2106/283317[@more@]一、处理错误1.当错误出现在Oracle Form PL/SQL中时,处理的方法如下:IF (err_condition)...
2007-10-23 20:50:18 75
转载 对齐!
一直,以来对FORM 中对齐方式的“堆叠”和“分布",不太清楚怎么用,今天一同事,指点一下,豁然开朗!堆叠:水平选“堆叠”,垂直选“顶部对齐”;节省了不少时间![@more@] ...
2007-10-16 14:49:34 64
转载 1015FORM
P.S http://www.trypub.com/thread-358-1-1.html[@more@]form 总结:1.一进页面就能看到表中已生成数据,而不用按ctrl+f11进行查询的语句:在form级的触发器when...
2007-10-15 16:48:54 81
转载 Oracle Report学习- -
Oracle Report学习- -[@more@]1. 在Report中建立data link有三种类型:Create a Query to Query Link Create a Group to Group Link Cr...
2007-10-12 10:34:40 113
转载 学习Oracle Form的一点笔记- -
学习Oracle Form的一点笔记- -[@more@]培养计划中还要掌握Form的开发,本以为就是Report稍微变更了一下,或者VB关联上数据库,但是实际却不是那么回事,很是不习惯。今天陆陆续续看了一些资料,零零碎碎的记了...
2007-10-12 10:32:21 160
转载 from4!
from4![@more@]1. 对象组 将数据块加入对象组,数据中的项、触发器、关系等不在对象组中显示。 只有顶级对象才能包含在对象组中。所以不能将items, item-level triggers, block-l...
2007-10-12 10:31:32 173
转载 设定报表的参数
1)设定报表参数的时候,可以设定属于哪一个值集,这样在用户运行报表的时候就可以对用户输入的参数进行一个校验。2)同时可以为参数设定一个默认值,这个默认值可以是基于SQL的、弹性域等等。例如可以当前登录系统的用户作为参数的默认值。...
2007-10-12 10:27:43 106
转载 FORM2!
FORM2![@more@]1、基于过程的块在包头中说明的过程,在包体中一定要定义,定义必须连参数的名称也必须一至。在使用过程(procedure)建立数据块的时候,在包中分别建立查询、插入、更新、删除、锁定5个过程。用来操作数...
2007-10-12 10:25:04 184
转载 FORM!
FORM![@more@]1. 子程序的作用范围 1.1在表单模块中的用户定义的子程序只能从触发器或者同模块中的其他子程序调用。 1.2在菜单模块中定义的子程序只能在菜单命令中调用。 1.3在库模块中的子程序能够别任...
2007-10-12 10:22:02 81
转载 tree
p.s http://www.itpub.net/858473.html[@more@]现讲述我所测试出的一种显示树的简单方法,步骤如下:1.向画布中拖入一个树控件,将树命名为test_tree,将test_tree所在的bl...
2007-10-12 10:14:52 65
转载 About Tuning the SQL clause!
I don't think I konw how to tuning the SQL clause,and the following is a example ,and in the future ,I will add mo...
2007-10-11 17:07:13 60
转载 Explain Plan中AUTOTRACE引起的SP2-0618和SP2-0611错误
P.S: http://www.erp100.com/html/43/2743-2292.html[@more@]今天测试Explain Plan功能碰到了这样的错误:SQL> set autotrace onSP2-06...
2007-10-11 16:15:03 121
转载 The concept of Left join & Right join!
Frankly speaking , I don't really know the difference between left join and right join! the following will give ...
2007-10-11 14:45:22 56
转载 A example for Dynamic SQL!
A example for Dynamic SQL I saw in a book![@more@]--首先,根据用户输入的表名及字段名等参数动态建表,并进行编译CREATE OR REPLACE PROCEDURE emp_e...
2007-10-11 08:59:19 76
转载 A example for decode;
I don't remember the web site ,the following is from a web site ,thank for the author![@more@]DECODE(E1, E2, E3, E...
2007-10-09 11:48:57 56
转载 How to use the
The following will show you how to use the explain plan:[@more@]--通过以下方法可以把Autotrace的权限授予Everyone,--如果你需要限制Autotra...
2007-10-08 11:29:06 74
转载 How to copy a table from the remote database!
The following is showing how to copy a table from a remote database:[@more@]First ,you should use an exsited user ...
2007-10-08 11:22:11 70
转载 CREATE USER!
You can see how to create a user;[@more@]CREATE USER Test_EricIDENTIFIED BY ERICDEFAULT TABLESPACE USERSTEMPORARY ...
2007-10-08 11:20:33 73
转载 SET NULL & CASCADE;
A example about SET NULL & CASCADE;[@more@]--SET NULL 首先创建两个表,父表为DEPTS,子表为EMPS,如果删除父表中的DEPARTMENT_NUM行,则EMPS...
2007-10-08 10:51:15 64
转载 About NULL;
P.S http://blogger.org.cn/blog/more.asp?name=blakestone&id=8555[@more@]软件环境: 1、Windows NT4.0+ORACLE 8.0.4 2...
2007-10-08 10:49:33 191
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人