安装启动检查Mysql服务。 netstat -tunlp (3306) spark 连接mysql驱动程序。 –cp /usr/local/hive/lib/mysql-connector-java-5.1.40-bin.jar /usr/local/spark/jars 启动 Mysql she ...
分类:
数据库 时间:
2021-06-02 15:02:56
阅读次数:
0
Execution Plans in SQL Server Introduction In this article, I’m going to explain what the Execution Plans in SQL Server are and how to understand the ...
分类:
数据库 时间:
2021-06-02 14:46:02
阅读次数:
0
1、创建表 create table TESTDATE ( calc_type NVARCHAR2(10), calc_no NVARCHAR2(10), calc_name NVARCHAR2(10), calc_aca1 NVARCHAR2(10), calc_aca2 NVARCHAR2(10 ...
分类:
其他好文 时间:
2021-06-02 14:40:39
阅读次数:
0
1、create table resultTable select * from sourceTable where ....; 可以复制条件下的数据,也可以复制数据结构,但是字段上面的比如自增长,不会被复制。 2、create table resultTable like sourceTable; ...
分类:
数据库 时间:
2021-06-02 14:36:16
阅读次数:
0
--check dataguard status select process,status,group#,sequence# from v$managed_standby select * from v$archived_log order by thread#, sequence#; selec ...
分类:
数据库 时间:
2021-06-02 14:24:58
阅读次数:
0
--create directory create directory dump_dir as '/splex/dump'; grant read,write on directory dump_dir to public; --export full database schema expdp u ...
分类:
数据库 时间:
2021-06-02 14:24:07
阅读次数:
0
Table of contents SQL Server Execution Plans Overview SQL Server Execution Plans Types How to Analyze SQL Execution Plan Graphical Components SQL Serv ...
分类:
数据库 时间:
2021-06-02 14:18:20
阅读次数:
0
1.=为比较运算符,同时也是sql中的赋值运算符, 除 text、ntext 或 image 数据类型的表达式外,=可以用于所有其他表达式,更多是一种数值类型上的判断,对于bool类型的判断会有3个结果TRUE、FALSE 和 UNKNOWN,在判断是否为null则会返回UNKNOWN,所以不能用= ...
分类:
数据库 时间:
2021-06-02 14:16:05
阅读次数:
0
1、建设表 2、每个函数的解释 -- 一条SQL解决ALL SELECT -- sql四大排序算法 ROW_NUMBER() over(PARTITION by age), RANK() over(PARTITION by age), DENSE_RANK() over(PARTITION by a ...
分类:
数据库 时间:
2021-06-02 14:10:56
阅读次数:
0
导入sql文件报错:ORA-01756: quoted string not properly terminated 字符集的中英文问题: 临时解决方法:export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK ...
分类:
其他好文 时间:
2021-06-02 14:06:48
阅读次数:
0