Fork me on GitHub
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 102 下一页
摘要: 背景 Oracle 12C引入了CDB与PDB的新特性,在ORACLE 12C数据库引入的多租用户环境(Multitenant Environment)中,允许一个数据库容器(CDB)承载多个可插拔数据库(PDB)。CDB全称为Container Database,即数据库容器,PDB全称为Plug 阅读全文
posted @ 2022-07-14 00:00 秋夜雨巷 阅读(4709) 评论(0) 推荐(0)
摘要: 数据库 查看数据库版本 select * from v$version 查看被锁的表 select b.object_id,b.object_name,b.owner,a.* from v$locked_object a,dba_objects b where b.object_id=a.objec 阅读全文
posted @ 2022-07-12 20:27 秋夜雨巷 阅读(251) 评论(0) 推荐(0)
摘要: 查看oracle服务器编码 -- NLS_LANG编码 select userenv('language') from dual; -- 查看NLS_CHARACTERSET编码 select * from v$nls_parameters where parameter='NLS_CHARACTE 阅读全文
posted @ 2022-07-08 10:06 秋夜雨巷 阅读(1128) 评论(0) 推荐(0)
摘要: 环境 JDK1.7 + JAVAEE6 Myeclipse10 maven坐标 如果不是用javaee6而是用maven项目的话,需要引入如下坐标。 <dependencies> <!--servlet--> <dependency> <groupId>javax.servlet</groupId> 阅读全文
posted @ 2022-07-07 20:21 秋夜雨巷 阅读(283) 评论(0) 推荐(0)
摘要: mvn install 安装jar到本地仓库 mvn install:install-file -DgroupId="com.oracle" -DartifactId=ojdbc7 -Dversion="12.1.0.2" -Dpackaging=jar -Dfile="ojdbc7-12.1.0. 阅读全文
posted @ 2022-07-07 18:10 秋夜雨巷 阅读(741) 评论(0) 推荐(0)
摘要: 问题 there has been a problem contacting the server 修改服务端svnserve.conf(未解决) 修改svn的服务端conf/svnserve.conf anon-access=read改为anon-access=none 因为公司大部分同事不存在这 阅读全文
posted @ 2022-07-07 16:49 秋夜雨巷 阅读(914) 评论(0) 推荐(0)
摘要: web容器 阅读全文
posted @ 2022-07-01 11:32 秋夜雨巷 阅读(183) 评论(0) 推荐(0)
摘要: Oracle官网 https://www.oracle.com/cn/database/technologies/appdev/plsql.html instantclient下载 本地不安装数据库,仅安装实例时,需要单独下载instantclient。 https://www.oracle.com 阅读全文
posted @ 2022-06-29 12:51 秋夜雨巷 阅读(162) 评论(0) 推荐(0)
摘要: Mysql5.7 Explain 官网 Using join buffer (Block Nested Loop) 调优前 EXPLAIN SELECT qj.*,s.NAME,s.facultyName,s.className,s.sfzh,tcf.loginName AS teacherphon 阅读全文
posted @ 2022-06-10 16:19 秋夜雨巷 阅读(8341) 评论(0) 推荐(0)
摘要: Maven坐标 <properties> <itextpdf.version>5.5.6</itextpdf.version> </properties> <dependencies> <dependency> <groupId>com.itextpdf</groupId> <artifactId> 阅读全文
posted @ 2022-06-01 17:26 秋夜雨巷 阅读(2163) 评论(0) 推荐(1)
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 102 下一页