随笔分类 -  openGauss

摘要:平时查询一些系统表或视图,可以使用字段名或者表名进行模糊查询 根据表或视图关键字查询 select table_catalog,table_schema,table_name,table_type from information_schema.tables where table_type in 阅读全文
posted @ 2025-06-05 23:28 kahnyao 阅读(78) 评论(0) 推荐(0)
摘要:查询自定义对象ddl时间 select pc.relname, case object_type when 'r' then '普通表' when 'i' then '索引' when 's' then '序列' when 'v' then '视图' when 'p' then '存储过程和函数' 阅读全文
posted @ 2025-05-29 23:18 kahnyao 阅读(86) 评论(0) 推荐(0)
摘要:安装openGauss 6.0.0 yum源配置 #本地源 mount /dev/cdrom /mnt cd /etc/yum.repos.d mkdir bk mv *.repo bk/ cat >test.repo<<EOF [EL7] name = linux 7.6 dvd baseurl= 阅读全文
posted @ 2024-12-23 20:34 kahnyao 阅读(401) 评论(0) 推荐(0)