zoukankan      html  css  js  c++  java
  • Vertica数据库常用管理命令汇总

    1.查询数据库是否有等待

    select * from resource_queues where node_name=(select node_name from nodes order by node_name limit 1) order by queue_entry_timestamp desc;
    

    2.查当前数据库执行的sql(包含在队列里等待的)

    select substr(current_statement, 1, 200), count(1) 
    from sessions 
    where not current_statement is null and (transaction_id, statement_id)<>(current_trans_id(), current_statement()) 
    group by 1; 
    

    3.资源池

    3.1查询当前资源池的设置情况

    SELECT name, memorysize, maxmemorysize, priority, runtimepriority,QUEUETIMEOUT,runtimeprioritythreshold, runtimecap, maxconcurrency 
    FROM V_CATALOG.RESOURCE_POOLS;
    

    3.2查询当前资源池的使用状态

    select node_name,pool_name,running_query_count as running,memory_size_kb,memory_inuse_kb,general_memory_borrowed_kb,query_budget_kb 
    from resource_pool_status 
    where running_query_count > 0 
    order by pool_name,node_name;
    

    4.数据是否持久化到磁盘,DIFF=0

    select latestepoch-earliestepoch as DIFF,epochmap,earliestepoch,latestepoch,ahmepoch from vs_epoch_map;
    

    5.查询Tuple Mover状态(dbadmin执行)

    select node_name,service_name,service_interval_sec as period,is_enabled,last_run_start,last_run_end 
    from system_services 
    where service_name like 'TM%' 
    order by last_run_end desc,last_run_start desc,service_name;
    

    6.手动将数据持久化(Moveout)

    select do_tm_task('moveout','');
    

    7.导出建表语句

    select export_objects('/tmp/all.sql','');
    

    8.查看license信息

    SELECT DISPLAY_LICENSE();
    
  • 相关阅读:
    Fraction to Recurring Decimal
    Compare Version Numbers
    回溯法 -数据结构与算法
    Maximum Gap
    STL——迭代器的概念
    STL——内存基本处理工具
    STL——空间的配置和释放std::alloc(第一级配置器和第二级配置器)
    careercup-中等难度 17.12
    careercup-中等难度 17.11
    careercup-中等难度 17.9
  • 原文地址:https://www.cnblogs.com/jyzhao/p/3798363.html
Copyright © 2011-2022 走看看