finchina用户登录财汇数据库: 1.备份财汇数据库(finchina) 登陆Oracle服务器端: (1)在操作系统上建立真实目录(注意当前路径有足够大的存储空间) mkdir -p /oracle/db/20210430 echo $ORACLE_SID sqlplus / as sysdb ...
分类:
其他好文 时间:
2021-05-25 18:12:10
阅读次数:
0
vim DockerfileFROM centos:7 MAINTAINER Liuliubin ADD ./apache-tomcat-7.0.99.tar.gz /root ADD ./jdk-7u80-linux-x64.tar.gz /root ENV JAVA_HOME /root/jdk ...
分类:
其他好文 时间:
2021-05-24 16:54:55
阅读次数:
0
#房贷计算器 # 第一部分代码 money = int(input('请输入贷款总金额:(整数、单位万)')) time = int(input('请输入贷款年限:(整数)')) rate = float(input('请输入贷款年利率:(4.9,表示4.9%)')) # 将万转换为元 money ...
分类:
编程语言 时间:
2021-05-24 16:49:34
阅读次数:
0
yum -y install java-1.8.0-openjdk java -version 使用的openjdk 8 oracle下载必须登录,这操作我也是服了。。 ...
分类:
编程语言 时间:
2021-05-24 15:27:46
阅读次数:
0
Scala语言类型(同java) 静态,强,类型推断, 弱类型:(javascripte) > "1"+2 '12' 强类型:(java,scala,python) >>> "1"+2 TypeError: cannot concatenate 'str' and 'int' objects 动态类 ...
分类:
其他好文 时间:
2021-05-24 14:04:24
阅读次数:
0
promise.then 如果不加第二个参数则会执行catch方法, 加第二个参数则不会执行catch方法。 var pro=new Promise((resolve,reject)=>{ // resolve(); reject(); }) pro.then(()=>{ console.log(' ...
分类:
其他好文 时间:
2021-05-24 13:41:41
阅读次数:
0
countDownLatch这个类使一个线程等待其他线程各自执行完毕后再执行。 public class CountDownLatchDemo { public static void main(String[] args) throws InterruptedException{ /** * * ...
分类:
其他好文 时间:
2021-05-24 13:31:31
阅读次数:
0
html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; height: 100%; } body { margin: 0; font-si ...
分类:
Web程序 时间:
2021-05-24 13:06:47
阅读次数:
0
public class WindowSell2 { private int num=0; public synchronized void increade() throws InterruptedException{ while (num != 0){ this.wait(); } num++; ...
分类:
编程语言 时间:
2021-05-24 12:36:19
阅读次数:
0
<html> <embed height="200" type="application/x-shockwave-flash" width="200" src="http://www.blogclock.cn/swf/S1000746cf11489-9.swf" wmode="transparent ...
分类:
其他好文 时间:
2021-05-24 08:27:38
阅读次数:
0