ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password' Where root as your user localhost as your URL and password as your p ...
分类:
数据库 时间:
2020-01-26 15:52:26
阅读次数:
77
api差异参考官网地址:https://spark.apache.org/docs/2.1.1/sql-programming-guide.html#upgrading-from-spark-sql-16-to-20 1.SparkSession is now the new entry point ...
分类:
其他好文 时间:
2020-01-06 19:23:38
阅读次数:
87
"题意" 由于这是个$DAG$,我们考虑拓朴排序,求某个点能到的和能到它的点,这是两个问题,我们可以正反两边拓朴排序,这样就只用考虑它能到的点了 设$f[x]$表示$x$能到的点数$+$能到$x$的点数 如果在拓朴排序的过程中: $q.size()==1$,显然当前队首$x$能到达剩下的所有点,中途 ...
分类:
其他好文 时间:
2019-12-21 20:52:04
阅读次数:
106
再安装包的时候提示 You are using pip version 9.0.3, however version 10.0.1 is available.You should consider upgrading via the 'python -m pip install --upgrade ...
分类:
编程语言 时间:
2019-12-17 10:31:20
阅读次数:
576
安装了navicat 和 mysql,结果最后在navicat中连接mysql时,出现了如下错误提示: Client does not support authentication protocol requested by server; consider upgrading MySQL clie ...
分类:
数据库 时间:
2019-12-16 11:43:31
阅读次数:
90
报这个错可能是因为用了低版本的的客户端、驱动连接高版本的mysql服务器。 解决方式有三种:升级客户端版本、修改服务端认证方式和适应服务端认证方式。 我是通过升级客户端版本解决,参考一下链接: Upgrading to MySQL Connector/J 8.0 同时收集了其他的解决问题的链接: 连 ...
分类:
数据库 时间:
2019-11-25 15:28:36
阅读次数:
88
1、数据库安装完,设置远程连接 ,参考链接:https://blog.csdn.net/yunyexiangfeng/article/details/82876964 通常grant all privileges on *.* to 'user'@'%' identified by 'passowr ...
分类:
数据库 时间:
2019-11-02 15:26:31
阅读次数:
109