该文被密码保护。 阅读全文
posted @ 2024-06-04 22:32 DBAGPT 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 在 PostgreSQL 中可以使用以下查询来获取指定 schema 下所有用户或角色对 sequence 的权限详细信息: 查询指定 schema 下所有用户对 sequence 的权限: SELECT pg_catalog.pg_get_userbyid(g.grantee) AS grante 阅读全文
posted @ 2024-06-04 22:28 DBAGPT 阅读(2) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-06-04 22:04 DBAGPT 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-06-04 21:56 DBAGPT 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-06-01 20:43 DBAGPT 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-05-20 21:58 DBAGPT 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-05-19 14:54 DBAGPT 阅读(0) 评论(0) 推荐(0) 编辑
摘要: https://aws.amazon.com/cn/blogs/database/validating-database-objects-after-migration-using-aws-sct-and-aws-dms/ Step 1 - Validate packages Run the fol 阅读全文
posted @ 2024-05-15 21:41 DBAGPT 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 在Oracle中,您可以使用以下查询来获取所需的信息: 查询主键索引信息: SELECT c.table_name, c.constraint_name AS index_name, LISTAGG(c.column_name, ', ') WITHIN GROUP (ORDER BY c.posi 阅读全文
posted @ 2024-05-15 07:33 DBAGPT 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # 读取result.txt文件内容 while IFS= read -r line do if [[ $line == *"ORACLEDB"* ]]; then ORACLEDB_line="$line" # 保存ORACLEDB行 else # 提取POSTGRES行的 阅读全文
posted @ 2024-05-02 17:10 DBAGPT 阅读(1) 评论(0) 推荐(0) 编辑