echo"===========获取数据库创建时间==========="data_dir=$(psql -U postgres -d postgres -X-qAt-c"show data_directory")db_dirs=$(ls $data_dir/base |grep-v pgsql_tmp)fordb_oidin$db_dirsdodb_exists=$(psql -U postgres -d postgres -X-qAt-c"select count(*) from pg_database where oid=$db_oid and datname not in ('postgres','template0','template1')")if[$db_exists-eq1];thendb_name=$(psql -U postgres -d postgres -X-qAt-c"select datname from pg_database where oid=$db_oid and datname not in ('postgres','template0','template1')")echo$db_name/bin/stat -c"%y"`ls $data_dir/base/$db_oid/PG_VERSION`fidoneecho-e"\n===========获取用户创建时间==========="# 前提 track_commit_timestamp 设置为 on
psql -c"select rolname, pg_xact_commit_timestamp(xmin) from pg_authid where rolpassword is not null;"# 获取集群初始化时间
SELECT version() AS "Version",
to_timestamp (system_identifier >>32) as clusterinit_timestamp
FROM pg_control_system();
Linux快速入门 Linux操作系统简介Linux操作系统优点Linux操作系统发行版1. Red Hat Linux2. CentOS3. Ubuntu4. SUSE Linux5. Fedora Linux 32位与64位操作系统的区别Linux内核命名规则 Linux操作系统简介
Linux操作系统是基于UNIX以网络为核心的设计思想,是一个性…
简单做了个模板,能干这个:
指定sheet中某列数据进行按需拆分,拆分后新建一个test的sheet,将数据分别存入test的不同列中。
import os
import xlwings as xw
import re
#excel路径
pathrC:\Users\xxx\Desktop\123.xlsx#设置需要…
<?xml version"1.0" encoding"UTF-8"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information…