摘要:
人生格言:多吃蔬菜多吃肉,多晒太阳多睡觉!!! 兴趣:数据库、人工智能 My badges:https://www.youracclaim.com/users/shunqing-jin 0 推荐阅读书籍 学习笔记 ora2pg简单使用 【学习笔记】兄弟连LINUX视屏教程(沈超 李明) 【学习笔记】 阅读全文
摘要:
1、hive取得当前日期时间: -- 1.1) 取得当前日期: -- 1.2) 取得当前日期时间: select current_timestamp(); 阅读全文
摘要:
ora2pg是一款免费迁移工具,能将oracle迁移到pg,简单使用并记录过程如下 官方文档:http://ora2pg.darold.net/ 环境: 虚拟机 oracle linux 7.7 oracle 11GR2 11.2.0.4 pg 13.1 Ora2Pg v21.0 1.安装ora2p 阅读全文
摘要:
pyschools Topic 5: Question 12题目:分解质因素Given a positive integer, write a function that computes the prime factors that can be multplied together to get back the same integer.def primeFactorization(num)... 阅读全文
摘要:
pyschools Topic 6: Question 11题目:矩阵乘法Write a function that does matrix multiplication. The product of a mxn matrix with a nxp matrix results in a mxp matrix. A mxn matrix, with m rows and n column... 阅读全文
摘要:
pyschools Topic 2: Question 9 题目:给定一组整数,获取其个位数之和Write a function getSumOfLastDigits() that takes in a list of positive numbers and returns the sum of all the last digits in the list.def getSumOfLastD... 阅读全文
摘要:
pyschools Topic 8: Question 7的题目:给定一个单词,输出字母及字母出现次数Write a function countLetters(word) that takes in a word as argument and returns a dictionary that counts the number of times each letter appears.pyt... 阅读全文
摘要:
官方文档https://docs.oracle.com/cd/E11882_01/server.112/e16604/ch_eight.htm#i1037226set autotrace off表示关闭,是默认的(set autot off)set autotrace on表示显示结果、执行计划、统计信息(set autot on)set autotrace on explain表示显示结果、执行... 阅读全文
摘要:
win中查看MD5值:certutil -hashfile 文件名 MD5查看 SHA1certutil -hashfile 文件名 SHA1查看SHA256certutil -hashfile 文件名 SHA256linux中 md5sum 文件名 阅读全文
摘要:
这个文章nice,https://www.cnblogs.com/ftl1012/p/ssh.htmlssh,secure shell缩写,加密传输,比telnet明文传输更安全,旨在替代ftp和telnet连接linux服务器默认端口22,服务器端包含ssh服务和sftp服务,客户端包含ssh连接命令和scp拷贝命令scp每次都是全量拷贝,效率低,适合第一次拷贝,增量拷贝用rsync,可以双向拷... 阅读全文