数据库[总排行] [月排行] [周排行] [日排行]
写一份赏心悦目的工程文档,是很困难的事情。若想写得完善,不仅得用对工具(use the right tools),注重文笔,还得投入大把时间,真心是一件难度颇高的事情。但,若是真写好了,也是善莫大焉:既可让人明白「为何如此设计」,即「知其然更知其所以然」;也能剥离一些琐碎的细节,让更多没那么多时间与...
分类:数据库 时间:2014-06-02 21:24:16 阅读:486
bit 整型bit数据类型是整型,其值只能是0、1或空值。这种数据类型用于存储只有两种可能值的数据,如Yes 或No、True 或False 、On 或Off.注意:很省空间的一种数据类型,如果能够满足需求应该尽量多用。tinyint 整型tinyint 数据类型能存储从0到255 之间的整数。它在...
分类:数据库 时间:2014-06-02 22:14:11 阅读:339
每年 select to_char(createtime, 'YYYY') 年, count(*) from table  group by to_char(createtime, 'YYYY'); 每季度 select to_char(createtime, 'q') 年, count(*) from table  group by to_char(createtime, 'q'); ...
分类:数据库 时间:2014-06-01 08:48:29 阅读:368
add_months(trunc(to_date('2013','yyyy') ,'yyyy'),12)-1  2013年最后一天 trunc(to_date('2013','yyyy') ,'yyyy')  2013年第一天 5月的最后一天  select last_day(to_date('2013-05','yyyy-mm')) d from dual...
分类:数据库 时间:2014-06-01 00:07:37 阅读:345
select total_user from a_user_no where date_time=(select max(date_time) from a_user_no  where  ‘2013-05’+ "'=to_char(date_time,‘yyyy-mm’));   通过max 函数来去5月份出现最大日期的数据...
分类:数据库 时间:2014-06-01 08:53:00 阅读:312
数据库期末考试复习题 第一章...
分类:数据库 时间:2014-05-31 23:53:44 阅读:595
数据库期末考试复习题 第二章...
分类:数据库 时间:2014-06-01 00:57:55 阅读:804
[root@localhost ~]# su - oracle [oracle@localhost ~]$ sqlplus '/as sysdba' SQL*Plus: Release 11.2.0.1.0 Production on Tue Apr 22 17:10:52 2014 Copyright (c) 1982, 2009, Oracle.  All rights re...
分类:数据库 时间:2014-06-01 09:02:31 阅读:802
数据库期末考试复习题 第三章...
分类:数据库 时间:2014-06-01 09:03:49 阅读:1131
Oracle数据库管理实验 一 传输表空间 二 创建分区表和分区索引 三 FGA细粒度审计 四 监控索引使用情况 五 创建含特殊字段类型的表 六 Flashback闪回技术 一 传输表空间,将ocmdb库的tstrans表空间迁移到ocmdb02库中 场合:1.适用于OLAP数据仓库应用  2.数据迁移 比exp/imp速度快,不仅迁移数据同时迁移元数据 原理:只...
分类:数据库 时间:2014-06-01 01:30:45 阅读:470
118428184291843018734
上一页187332下一页
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!