MySQL字符串截取与常用查询
Here’s the table of contents:
被截取字符串
截取结果
截取SQL
备注
生成数值
从一个表拿数据更新到另外一个表
分组排重统计
查询字段并合并成一个字段返回【一行多字段聚合】
查询字段并合并成一个字段返回【多行聚合】
指定索引查询
获取24H之前的系统时间
表内关联
查询更新
查询SQL进程并KILL
更新默认值
增加自动更新时间字段
增加字段BTREE索引
指定FROM和TO字段分组导出JSON-DETAIL数据
条件分支查询
数据替换
多字段分组统计
覆盖更新
忽略重复
查询数据写入新表
从分组结果中继续分组统计
分组排序获取TOPN并只返回某研报...
从MySQL加载数据到ONgDB
Here’s the table of contents:
下载MySQL-DRIVE加载到插件列表
加载注册驱动
读取数据
使用批次/多事务提交方式读取远程JDBC数据源并更新图库
下载MySQL-DRIVE加载到插件列表
加载注册驱动
CALL apoc.load.driver("com.mysql.jdbc.Driver")
读取数据
CALL apoc.load.jdbc('jdbc:mysql://localhost:3306/database?user=user&password=password&useUnicode=true&characterEncoding=utf8&serverTimezone=UTC',...
常用GraphiQL操作
Here’s the table of contents:
GraphiQL
1
2
GraphiQL
1
{
horgByName(name: "li ning") {
name
hcode @skip(if: true)
alias @include(if: false)
}
}
2
type Person {
name: ID!
born: Int
actedIn: [Movie] @relation(name:"ACTED_IN")
}
type Movie {
title: ID!
released: Int
tagline: String
}
type Q...
大批量子图数据删除
Here’s the table of contents:
CALL apoc.periodic.iterate刪除数据 【占满整个堆内存,造成垃圾回收暂停。】
CALL apoc.periodic.commit刪除数据[remove和delete标签和属性的时候使用下列过程][图数据库分配到的内存太小时使用这种方式删除数据]
CALL apoc.periodic.iterate刪除数据 【占满整个堆内存,造成垃圾回收暂停。】
1、CALL apoc.periodic.iterate('MATCH (f:HORGShareHold) WHERE f.hcode=~\'-HORG.*[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4...
在图上做随机游走
Here’s the table of contents:
随机游走
Graph Demo
Random Walk-1
Random Walk-2
参数注释
随机游走
随机游走
【neo4j-graph-data-science-1.1.1-standalone】在ongdb-3.5.17不支持高并发计算
Graph Demo
CREATE (home:Page {name: 'Home'}), (about:Page {name: 'About'}), (product:Page {name: 'Product'}), (links:Page {name: 'Links'}), (a:Page ...
事务日志恢复DEBUG
Here’s the table of contents:
问题出现的背景
报错现象
修改配置以顺利启动数据库
问题出现的背景
ONgDB集群中Leader节点,存储快速增加,导致数据占满磁盘,产生大量错误事务日志,导致服务无法正常重启。
报错现象
2020-07-14 06:46:54.549+0000 ERROR Failed to start Neo4j: Starting Neo4j failed: Component 'org.neo4j.server.database.LifecycleManagingDatabase@e09f1b6' was successfully initialized, but failed to start. Please s...
OngDB-GraphQL扩展
Here’s the table of contents:
组件安装
下载插件
修改neo4j.conf配置
GraphQL使用
设置一个GraphQL Schema
查看GraphQL Schema
运行查询
重置GraphQL Schema
查看已有GraphQL Schema的字符串表示
查看远程的GraphQL Schema
参考
OTHER
HORGShareHold标签
组件安装
下载插件
GraphiQL A GUI for editing and testing GraphQL queries a...
126 post articles, 16 pages.