Greenplum数据仓库UDW - UCloud中立云计算服务商Greenplum数据仓库 UDW Copyright © 2012-2021 UCloud 优刻得 7/206 1. Client:访问 UDW 的客⼾端 ⽀持通过 JDBC、ODBC、PHP、Python、命令⾏ Sql 等⽅式访问 UDW 2. Master Node:访问 UDW 数据仓库的⼊⼝ 接收客⼾端的连接请求 负责权限认证 处理 SQL 命令 调度分发执⾏计划 汇总 Segment Greenplum数据仓库 UDW Copyright © 2012-2021 UCloud 优刻得 25/206 2.python客⼾端访问 $yum install python-psycopg2 ⽰例1. 连接UDW testconn.py #!/usr/bin/python import psycopg2 conn = psycopg2.connect(database="dev", host="hostIP", port="port") print "Opened database successfully" 执⾏ python testconn.py ⽰例2. 创建⼀个表 createTable.py #!/usr/bin/python import psycopg2 conn = psycopg2.connect(database="dev", user="username"0 码力 | 206 页 | 5.35 MB | 1 年前3
《Redis使用手册》(试读版)读者可以通过 书本的⽬录和附录快速定位命令和示例, ⾮常便于⽇常查阅。 1.4 预备⼯作 本书包含⼤量 Redis 命令操作实例和 Python 代码应⽤示例, 执⾏和测试这些示例需要⽤到 Redis 服务器及其附 带的 redis-cli 客户端、Python 编程环境和 redis-py 客户端, 如果你尚未安装这些软件, 那么请查阅本书的附 录 A 和附录 B 并按照指引进⾏安装。 在正确安装 Redis 服务器: 并通过以下命令启动 redis-cli 客户端: $ redis-cli 127.0.0.1:6379> 以及通过以下命令启动 Python 解释器并载⼊ redis-py 库: $ python3 Python 3.7.3 (default, Mar 27 2019, 09:23:15) [Clang 10.0.1 (clang-1001.0.46.3)] on port 10086 然后在启动 Redis 服务器时向其提供该配置⽂件: $ redis-server myredis.conf 1.7 示例代码 正如上⾯提到的那样, 本书提供了⼤量 Python 代码示例, 这些示例的源码可以通过访问以下⻚⾯获取: github.com/huangz1990/RedisGuide-code 。 本书在展示代码示例的同时, 会在示例标题的旁边给出源代码的具体访问路径。0 码力 | 352 页 | 6.57 MB | 1 年前3
Apache ShardingSphere 5.0.0-alpha Document. 76 Agent Integration . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 78 3.5 Scaling . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 “INFO”#log level ˋˋ When ignoredPluginNames is configured, plugins in the collection are ignored! 3.5 Scaling 3.5.1 Background Apache ShardingSphere provides data sharding capability, which can split window of data unavailability during the scaling as much as possible, or even completely unaware. 3.5. Scaling 79 Apache ShardingSphere document, v5.0.0-beta Finally, scaling should not affect the existing0 码力 | 311 页 | 2.09 MB | 1 年前3
PostgreSQL 13.14 Documentation.............................................................................................. 19 3.5. Window Functions ................................................................................ ........................ 1373 45. PL/Python — Python Procedural Language ........................................................... 1375 45.1. Python 2 vs. Python 3 .................................. ........................................... 1375 45.2. PL/Python Functions ............................................................................... 1376 45.3. Data Values ......................0 码力 | 2940 页 | 12.89 MB | 1 年前3
PostgreSQL 13.13 DocumentationTransactions ......................................................................................... 18 3.5. Window Functions ................................................................................ ........................... 1298 45. PL/Python — Python Procedural Language ..................................................... 1300 45.1. Python 2 vs. Python 3 ..................................... .................................. 1300 45.2. PL/Python Functions ......................................................................... 1301 45.3. Data Values .....................................0 码力 | 2782 页 | 13.00 MB | 1 年前3
PostgreSQL 14.10 Documentation.............................................................................................. 19 3.5. Window Functions ................................................................................ ........................ 1414 46. PL/Python — Python Procedural Language ........................................................... 1416 46.1. Python 2 vs. Python 3 .................................. ........................................... 1416 46.2. PL/Python Functions ............................................................................... 1417 46.3. Data Values ......................0 码力 | 3032 页 | 13.27 MB | 1 年前3
PostgreSQL 14.10 DocumentationTransactions ......................................................................................... 18 3.5. Window Functions ................................................................................ ........................... 1340 46. PL/Python — Python Procedural Language ..................................................... 1342 46.1. Python 2 vs. Python 3 ..................................... .................................. 1342 46.2. PL/Python Functions ......................................................................... 1343 46.3. Data Values .....................................0 码力 | 2871 页 | 13.38 MB | 1 年前3
MyBatis 框架尚硅谷 java 研究院版本:V 1.0JAVAEE 课程系列 ————————————————————————————— 1 更多 Java –大数据 –前端 –python 人工智能资料下载,可访问百度:尚硅谷官网 MyBatis 框架 尚硅谷 java 研究院 版本:V 1.0 第 1 章 MyBatis 简介 1.1 MyBatis 历史 1)MyBatis 是 Apache 的一个开源项目 iBatis, 2010 基于全映射的全自动框架,大量字段的 POJO 进行部分映射时比较困难。导致数据 库性能下降 JAVAEE 课程系列 ————————————————————————————— 2 更多 Java –大数据 –前端 –python 人工智能资料下载,可访问百度:尚硅谷官网 3) MyBatis 1 对开发人员而言,核心 sql 还是需要自己优化 2 sql 和 java 编码分开,功能边界清晰,一个专注业务、一个专注数据 https://github.com/mybatis/mybatis-3/ JAVAEE 课程系列 ————————————————————————————— 3 更多 Java –大数据 –前端 –python 人工智能资料下载,可访问百度:尚硅谷官网 第 2 章 MyBatis HelloWorld 2.1 开发环境的准备 1) 导入 MyBatis 框架的 jar 包、Mysql 驱动包、log4j0 码力 | 44 页 | 926.54 KB | 1 年前3
PostgreSQL 10.23 Documentation.............................................................................................. 17 3.5. Window Functions ................................................................................ ....................... 1262 45. PL/Python - Python Procedural Language ............................................................. 1264 45.1. Python 2 vs. Python 3 ................................. ............................................ 1264 45.2. PL/Python Functions ............................................................................... 1265 45.3. Data Values .....................0 码力 | 2727 页 | 11.93 MB | 1 年前3
PostgreSQL 10.23 DocumentationTransactions ......................................................................................... 16 3.5. Window Functions ................................................................................ ......................... 1196 45. PL/Python - Python Procedural Language ........................................................ 1198 45.1. Python 2 vs. Python 3 .................................... ................................... 1198 45.2. PL/Python Functions ......................................................................... 1199 45.3. Data Values ....................................0 码力 | 2590 页 | 12.03 MB | 1 年前3
共 199 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20













