上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: 想知道数据库中哪表含有edu_status字段 在MySQL和postgresql中,把 information_schema 看作是一个数据库,确切说是信息数据库。 COLUMNS表:提供了表中的列信息。 SCHEMATA表:提供了当前mysql实例中所有数据库的信息。 TABLES表:提供了关于 阅读全文
posted @ 2019-08-26 13:48 夏天换上冬装 阅读(2391) 评论(0) 推荐(0) 编辑
摘要: RDD Persistence One of the most important capabilities in Spark is persisting (or caching) a dataset in memory across operations. When you persist an  阅读全文
posted @ 2019-08-20 09:58 夏天换上冬装 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 因为业务需求,需要将服务器上的postgre多个数据库的数据整个库得迁移到另一个postgre数据库上。 一般表较少时,会使用postgre 的copy to 和 copy from 命令就能完成表的迁移,但这种方式需要target_database 上提前先创建好对应的表,并且每一个表都需要一次c 阅读全文
posted @ 2019-08-07 10:53 夏天换上冬装 阅读(1826) 评论(0) 推荐(0) 编辑
摘要: 【以下两段截自MySql手册】: merge存储引擎,也被认识为mrg_myisam引擎,是一个"相同“的表可以被当作一个表来用的myisam表的集合。“相同”意味着所有表同样的列和索引信息。你不能合并列被以不同顺序列于其中的表,没有恰好同样列的表,或有不同顺序索引的表。而且,任何或者所有的表可以用 阅读全文
posted @ 2019-08-05 09:48 夏天换上冬装 阅读(673) 评论(0) 推荐(0) 编辑
摘要: ping是基于ICMP(Internet Control Message Protocol)协议工作的 ICMP报文封装在IP包里,作为“侦察兵”,非常轻巧。 ICMP报文的类型有很多,最常用的是主动请求为8,主动请求的应答为0。 查询报文类型 主动发起查询,对应的额就是查询报文类型,ping就是查 阅读全文
posted @ 2019-07-29 09:53 夏天换上冬装 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 在mysql执行下面语句时报错: 1 You can’t specify target table for update in FROM clause 2 3 UPDATE edu_grade_hgm_1 4 SET exam_natures_new = '2' 5 WHERE 6 (outid, 阅读全文
posted @ 2019-07-22 09:43 夏天换上冬装 阅读(2965) 评论(0) 推荐(0) 编辑
摘要: (e.g. standalone manager, Mesos, YARN) In "cluster" mode, the framework launches the driver inside of the cluster. In "client" mode, the submitter lau 阅读全文
posted @ 2019-07-15 09:46 夏天换上冬装 阅读(168) 评论(0) 推荐(0) 编辑
摘要: sparkbin目录下 ./pyspark --help http://spark.apache.org/docs/latest/submitting-applications.html local模式 spark-env.sh 在$SPARK_HOME/conf下 yarn模式不需要启动maste 阅读全文
posted @ 2019-07-08 09:39 夏天换上冬装 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 第一层(物理层) 如何用两台电脑构成最小的局域网(LAN)? 网线的水晶头1、2和3、6脚分别起着收、发信号的作用,随意只要将水晶头做交叉线1-3、2-6交叉法,然后连接两台电脑。除了网线交叉,还要配置两台电脑的IP地址、子网掩码和默认网关。如可以是一个192.168.0.2/24和192.168. 阅读全文
posted @ 2019-07-01 10:25 夏天换上冬装 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 利用@ConfigurationProperties(prefix = "")来绑定属性时报错: not registered via @EnableConfigurationProperties or marked as Spring component POM依赖 <dependency> <g 阅读全文
posted @ 2019-06-24 09:17 夏天换上冬装 阅读(3529) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页