该参数可用于给泵出文件中的源数据库文件重新指定一个新的路径和名称,主要用在平台间的数据迁移。用法:remap_datafile=source_file:target_file在windows平台上的使用:impdpdbuser/dbuserfull=ydumpfile=full.dmplogfile...
分类:
其他好文 时间:
2014-06-13 13:21:51
阅读次数:
667
count(*)是否能用到索引,用索引是高效还是低效select count(*) from
aa ;首先看是否会走索引,经过试验发现,他没有走索引它的执行计划 select statement sort aggregate table access
full别说是否高效了,他连索引都没有走,索引不...
分类:
其他好文 时间:
2014-06-11 12:00:01
阅读次数:
282
select distinct pla.po_header_id,
--pha.type_lookup_code,pha.segment1 采购订单号, appf.full_name 采购员, pla.line_num
订单行,msi.segment1 物料编码,pla.item_descript....
分类:
数据库 时间:
2014-06-10 22:04:15
阅读次数:
461
SQlite不支持以下特性:1.RIGHT and FULL OUTER JOIN,LEFT
OUTER JOIN 是支持的。2.alter table 不是完全支持;只支持重命名表名和增加列变量,其他操作例如删除列,改变列,增加约束是不能操
作的。3.trigger 不是完全支持。支持对每行建立触...
分类:
数据库 时间:
2014-06-10 20:25:18
阅读次数:
334
--采购订单执行情况查询(七天内接收情况)select pha.segment1 采购订单,
msib.segment1 物料编码, pla.quantity 订单数量, plla.need_by_date 需求日期, ppf.FULL_NAME
采购员, nvl(rcv.quantity,0).....
分类:
数据库 时间:
2014-06-10 20:11:49
阅读次数:
892
OpenResty (aka. ngx_openresty) is a
full-fledged web application server by bundling the standard Nginx core, lots of
3rd-party Nginx modules, as well ...
分类:
其他好文 时间:
2014-06-10 00:02:19
阅读次数:
384
MYSQL数据库安装完成后,默认最大连接数是100。命令: show processlist; 如果是root帐号,你能看到所有用户的当前连接。如果是其它普通帐号,只能看到自己占用的连接。 show processlist;只列出前100条,如果想全列出请使用show full processlist; mysql> show processlist;命令: show status;命令:show...
分类:
数据库 时间:
2014-06-09 23:44:10
阅读次数:
336
select fu.user_name 用户名, fu.description 描述,
(select ppf.FULL_NAME from per_people_f ppf where ppf.PERSON_ID = fu.employee_id
and trunc(sysdate) betwee...
分类:
数据库 时间:
2014-06-09 17:13:14
阅读次数:
270
select fu.user_name 用户名, fu.description 用户说明,
frv.RESPONSIBILITY_NAME 职责名称,REQUEST_GROUP_NAME 报表组,(select ppf.FULL_NAME from
apps.per_people_f ppf whe...
分类:
数据库 时间:
2014-06-09 16:58:45
阅读次数:
316
1. 复合字面值char *get_status_str(int status){ return
(char *[]){"linkdown","partial-linkup","full-linkup","N/A"}[status];} 2.
常量折叠#include int main() { .....
分类:
其他好文 时间:
2014-06-05 20:35:26
阅读次数:
199