码迷,mamicode.com
首页 >  
搜索关键字:oracle centos6.5 rac    ( 49815个结果
Oracle 连接配置
spring.datasource.url=jdbc:oracle:thin:@localhost:1521:orclspring.datasource.username=zhouriyuespring.datasource.password=13768184197spring.datasource ...
分类:数据库   时间:2021-02-15 11:56:11    阅读次数:0
codecheckServer Sonar
s SonarQube搭建手记 https://www.cnblogs.com/throwable/p/12907785.html sonarqube代码质量检测平台搭建 https://www.cnblogs.com/lixianguo/p/12518524.html 自SonarQube的7.9 ...
分类:其他好文   时间:2021-02-15 11:46:40    阅读次数:0
第二节:访问者模式——访问者模式应用实例
一、访问者模式应用实例 1、应用实例要求 将人分为男人和女人,对歌手进行测评,当看完某个歌手表演后,得到他们对该歌手不同的评价(评价有不同种类:比如成功、失败),使用访问者模式完成实现。 2、思路分析和图解 二、代码实现 抽象访问者: 1 /** 2 * 访问者 3 */ 4 public abst ...
分类:其他好文   时间:2021-02-15 11:40:10    阅读次数:0
信号灯法
信号灯法 线程通信 //信号灯法 标志位 public class TestPC2 { public static void main(String[] args) { Program program = new Program(); new Player(program).start(); new ...
分类:其他好文   时间:2021-02-10 13:15:30    阅读次数:0
2020 BIT冬训-贪心 G - Voting CodeForces - 749C
Problem Description There are n employees in Alternative Cake Manufacturing (ACM). They are now voting on some very important question and the leading ...
分类:其他好文   时间:2021-02-10 13:08:04    阅读次数:0
表连接方法
Oracle表连接方法有四种: 排序合并连接(Sort Merge Join) 嵌套循环连接(Nested Loops Join) 哈希连接(Hash Join) 笛卡尔积(Cartesian Product) 排序合并连接(Sort Merge Join) 排序合并连接是将连接的两个表使用连接列排 ...
分类:其他好文   时间:2021-02-09 12:42:10    阅读次数:0
oracle 用户解锁和修改用户密码
1.安装教程参看:https://jingyan.baidu.com/article/3c48dd34be2a32e10be35881.html 2.用户解锁 --> 运行cmd --> 输入sqlplus / as sysdba 后回车,以超级管理员身份登录 --> 输入alter user 账户 ...
分类:数据库   时间:2021-02-09 12:40:40    阅读次数:0
重要的sql语句
1:oracle 分页 select * from (select t.*, rownum rn from (select * from menu order by id desc) t where rownum < 10) where rn >=5 2: mysql 分页 select * fro ...
分类:数据库   时间:2021-02-09 12:24:17    阅读次数:0
QLU Regular Contest 003
E/F.Youmu with Lianliankan 消消乐,顾名思义,消着快乐,消完了就不快乐了。 一个字符矩阵,每次可以在里面将相同的字母按照一定规则消除。 规则是,连线的拐弯次数不得超过2次。 如所给图1就是合法的 图2就是不合法的 $n\leq 20$显然直接$bfs$爆搜即可 搜索方法: ...
分类:其他好文   时间:2021-02-09 12:18:08    阅读次数:0
springboot配置多数据源
首先是一个正常能运行的springboot项目 目前我这的要求是springboot配置了3个数据源(1.本地的mysql,2远程的mysql,3远程的oracle) 第一步:在pom.xml文件中导入依赖 <!--多数据源--> <dependency> <groupId>mysql</group ...
分类:编程语言   时间:2021-02-09 11:55:55    阅读次数:0
49815条   上一页 1 ... 33 34 35 36 37 ... 4982 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!