04 2024 档案

摘要:https://github.com/jkstill/oracle-script-lib 阅读全文
posted @ 2024-04-27 23:09 DBAGPT 编辑
该文被密码保护。
posted @ 2024-04-27 14:22 DBAGPT 编辑
该文被密码保护。
posted @ 2024-04-27 14:21 DBAGPT 编辑
摘要:#!/bin/bash # 过滤掉所有OK列以及以 开头的列到result1.txt文件中 grep -v -E "TABLE1: OK|--" data_validation.txt > result1.txt # 提取ORACLEDB以及POSTGRES开头的列,按照原格式存储到temp1.tx 阅读全文
posted @ 2024-04-24 22:57 DBAGPT 编辑
摘要:#!/bin/bash # 从data_validation.txt文件中提取需要处理的行,并将结果保存到temp.txt文件中 grep -E "ORACLEDB|POSTGRES" data_validation.txt > temp.txt # 逐行读取temp.txt文件 while IFS 阅读全文
posted @ 2024-04-24 22:32 DBAGPT 编辑
摘要:Oracle SELECT LOWER(c.table_name) || ':' || LOWER(i.index_name) || ':' || LOWER(wm_concat(c.column_name)) AS output FROM all_indexes i JOIN all_ind_co 阅读全文
posted @ 2024-04-24 22:02 DBAGPT 编辑
摘要:Both Oracle and PostgreSQL support the TIMESTAMP WITH TIME ZONE data type, but there are some differences in how they handle and store time zone infor 阅读全文
posted @ 2024-04-23 09:55 DBAGPT 编辑

点击右上角即可分享
微信分享提示