构建完大数据库后,以下为端口配置。
1.在数据库中建立表
zs@bigdataA:~$ psql -h datanode1 -p 30001 postgres zs //进入数据库
psql (PGXL 10r1.1, based on PG 10.6 (Postgres-XL 10r1.1))
Type “help” for help.
postgres=# select * from pgxc_node;
node_name | node_type | node_port | node_host | nodeis_primary | nodeis_preferred | node_id
-----------±----------±----------±----------±---------------±-----------------±------------
coord1 | C | 30001 | gtm | f | f | 1885696643
coord2 | C | 30002 | datanode2 | f | f | -1197102633
dn1 | D | 40001 | gtm | f | f | -560021589
dn2 | D | 40002 | datanode2 | f | f | 352366662
(4 rows)
postgres=# CREATE TABLE t1(bid serial PRIMARY KEY,id integer,xm varchar(255),zh varchar(255),nr bytea,tjsj timestamp DEFAULT now()); //建立表t1
CREATE TABLE
postgres=# \d
List of relations
Schema | Name | Type | Owner
--------±-----------±---------±------
public | t1 | table | zs
public | t1_bid_seq | sequence | zs
public | t2 | table | zs
public | t2_bid_seq | sequence | zs
public | t3 | table | zs
public | t3_bid_seq | sequence | zs
(6 rows)
postgres=# insert into t1(id,xm,zh) values(3,‘zhangsan’,‘zh1’
java大数据接口开发范例(基于海之舟大数据操作系统1.0A,内置改良的postgresql-xl,国产芯片服务器)
最新推荐文章于 2023-09-10 01:00:00 发布
本文介绍了如何在基于海之舟大数据操作系统1.0A(内含postgresql-xl)的国产芯片服务器上进行数据库操作。通过Java代码展示了连接数据库、创建表、插入数据、查询及更新数据的步骤。
摘要由CSDN通过智能技术生成