07 2014 档案

Oracle Multitenant Environment (五) Create PDB
摘要:Creating and Removing PDBs with SQL*PlusThis chapter contains the following topics:About Creating and Removing PDBsPreparing for PDBsCreating a PDB Us... 阅读全文

posted @ 2014-07-31 17:56 kramer 阅读(698) 评论(0) 推荐(0)

Oracle Multitenant Environment (四) Create One or More CDBs
摘要:Using the CREATE DATABASE Statement to Create a CDBThis section describes creating a CDB using theCREATEDATABASESQL statement.Note:Oracle strongly rec... 阅读全文

posted @ 2014-07-31 17:39 kramer 阅读(228) 评论(0) 推荐(0)

Oracle Multitenant Environment (三) Plan for a cdb
摘要:Below tables contains contant you need to consider while planning for a CDB.ActionConsiderations for a CDBAdditional InformationPlan the tables and in... 阅读全文

posted @ 2014-07-31 17:32 kramer 阅读(220) 评论(0) 推荐(0)

Oracle Multitenant Environment (二) Purpose
摘要:Purpose of a Multitenant EnvironmentA multitenant environment enables the central management of multiple PDBs in a single installation. By using a mul... 阅读全文

posted @ 2014-07-31 17:29 kramer 阅读(215) 评论(0) 推荐(0)

Oracle Multitenant Environment (一) About
摘要:About oracle mulittenant environmentThe multitenant architecture enables an Oracle database to function as a multitenant container database (CDB) that... 阅读全文

posted @ 2014-07-31 11:08 kramer 阅读(289) 评论(0) 推荐(0)

oracle 12c之前用sequence 和 trigger来生成自动增长的列
摘要:SQL> create table scott.t1 (id number, val varchar2(8));Table created.SQL> CREATE SEQUENCE scott.t1_id_seq INCREMENT BY 1 START WITH 1 NOMAXVALUE NOCY... 阅读全文

posted @ 2014-07-29 17:23 kramer 阅读(237) 评论(0) 推荐(0)

EPEL reporsitory
摘要:在centos 5上yum install git的时候报错说没有git这个package。 这是因为centos的软件策略非常保守,因为它基本就是redhat企业版的copy。所以想在centos5上安装git,需要用EPEL 源。EPEL的意思就是 extra packages for ente... 阅读全文

posted @ 2014-07-28 13:26 kramer 阅读(357) 评论(0) 推荐(0)

optimizer_index_cost_adj
摘要:Oracle在选择不同的访问路径时,会对全表扫描和索引扫描进行比较评估.在比较的时候,Oracle会把索引扫描的成本转换为全表扫描的成本,和全表扫描的COST进行比较.这个转换需要一个转换因子.就是optimizer_index_cost_adj: optimizer_index_cost_adj ... 阅读全文

posted @ 2014-07-25 16:38 kramer 阅读(576) 评论(0) 推荐(0)

oracle rac cache fusion
摘要:转载自http://blog.csdn.net/tianlesoftware/article/details/6534239IntroductionThis post is about oracle rac 10g, it is important to notice the version num... 阅读全文

posted @ 2014-07-22 11:13 kramer 阅读(500) 评论(0) 推荐(0)

一个oracle bug
摘要:最近发现一个RAC db的listener log增长特别快,于是去查看了一下。先是查看了一下log的内容,发现都是 service_update这种内容,刷新的特别快。 service_update是pmon向listener中注册的信息,按理说这种注册的行为不应该这么频繁,上网查了一下,发现下面... 阅读全文

posted @ 2014-07-17 14:44 kramer 阅读(281) 评论(0) 推荐(0)

django book chapter 2
摘要:Django’s optional GIS (Geographic Information Systems) support requires Python 2.5 to 2.7.这里提到了django的GIS,貌似是个挺有意思的东西,以后要研究一下。In case you’re curious: ... 阅读全文

posted @ 2014-07-11 16:57 kramer 阅读(140) 评论(0) 推荐(0)

linux 中文乱码问题
摘要:linux的字符界面默认不支持中文,所以你显示中文和编辑中文往往会是乱码,今天小研究了一下。首先要明白的问题是,乱码问题其实最本质就是编码和解码不符合。 比如你往linux上传了一个中文文件,但是用cat 或者 more去看的时候发现是乱码。这是因为你的中文文件编码可能是utf-8,可能是GBK等等... 阅读全文

posted @ 2014-07-04 18:18 kramer 阅读(1784) 评论(0) 推荐(0)

导航