上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 56 下一页

2019年4月11日

摘要: (一)数据库 创建数据库:create database if not exists financials; 显示数据库:show databases; show databases like "h.*" 设置位置:create database financials location "my/pr 阅读全文
posted @ 2019-04-11 19:18 happygril3 阅读(129) 评论(0) 推荐(0)

2019年4月8日

摘要: 10-100-34-23:/data/qiaoruihua/kg-etl-system/schedule_job$ 后台托管:nohup ./start_job.sh kg_fk_etl >>log.log 2>&1 & 查看进程:ps -ef|grep kg_fk_etl 启动任务:./start 阅读全文
posted @ 2019-04-08 14:58 happygril3 阅读(146) 评论(0) 推荐(0)

2019年2月26日

摘要: create(qiao:Person{name:"qiao"}),(wang:Person{name:"wang"}),(zhao:Person{name:"zhao"}),(liang:Person{name:"liang"}),(desk:Desk{num:123456}),(qiao)-[:h 阅读全文
posted @ 2019-02-26 17:51 happygril3 阅读(127) 评论(0) 推荐(0)

2019年2月21日

摘要: 1.ps查看进程 查看kg用户下的进程:ps aux |grep kg 查看某个程序的进程:ps -ef |grep kg_fk_etl 2. wget 从网络下载一个文件并保存在当前目录 3. 压缩解压 压缩:tar -zcvf test.txt.tar.gz test.txt 解压:tar -z 阅读全文
posted @ 2019-02-21 10:14 happygril3 阅读(262) 评论(0) 推荐(0)
摘要: 1. 阅读全文
posted @ 2019-02-21 09:53 happygril3 阅读(105) 评论(0) 推荐(0)

2019年2月19日

摘要: 1.跳转到目录:cd /data/soft/neo4j-community-not/ 2.修改配置文件:nano ./conf/neo4j.conf: 3. 登录:bin/cypher-shell -u neo4j -p neo4j0fcredithc 阅读全文
posted @ 2019-02-19 17:12 happygril3 阅读(1267) 评论(0) 推荐(0)

2019年2月15日

摘要: https://www.jb51.net/os/win10/370409.html 阅读全文
posted @ 2019-02-15 15:10 happygril3 阅读(167) 评论(0) 推荐(0)

2019年1月20日

摘要: (1)返回一条路径中的所有节点match p=(a)-->(b)-->(c)where a.name="Alice" and c.name="Eskil"return nodes(p)(2)返回一条路径中的所有关系match p=(a)-[r1]->(b)-[r2]->(c)where a.name 阅读全文
posted @ 2019-01-20 21:51 happygril3 阅读(319) 评论(0) 推荐(0)
摘要: //返回一个单值 (1)size //返回列表中元素的个数 return size(["Alice","Bob"])as col 2 //返回模式表达式子图的个数 match(a)where a.name="Alice" return size((a)-->()-->()) as fof 3(2)l 阅读全文
posted @ 2019-01-20 21:26 happygril3 阅读(255) 评论(0) 推荐(0)
摘要: //返回一个布尔值 create(alice:Person{name:"Alice",age:38,eyes:"brown"}),(charlie:Person{name:"Charlie",age:53,eyes:"green"}),(bob:Person{name:"Bob",age:25,ey 阅读全文
posted @ 2019-01-20 20:42 happygril3 阅读(98) 评论(0) 推荐(0)
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 56 下一页

导航