Centos7下cratedb数据导入导出copy to copy from

时间:2022-06-13 15:32:58

crate 创建表结构:

查看表:

  show tables;

创建表结构:

  create table tablename (k1 type,k2 type,k3 type);

  (type = int string ...)

插入数据:

  insert into tablename (k1,k2 ,k3) values (v1,v2,v3);

  select * from tablename;

注意:先建立表才能够copy!

导出数据服务器执行:

  copy to

    COPY test to DIRECTORY '/nfs/crate/test-a';

导入数据服务器执行:

  copy from

    COPY test from '/nfs/crate/test-a/test_0_.json';

最好建立NFS共享目录,这样省去拷贝步骤