oracle表能有多个属主吗,【oracle运维】导出某属主用户的所有表结构(excel格式)...

#!/bin/bash

# Desc: 该脚本用于导出某属主用户的所有表结构: 表明、字段名、字段类型

## declare variables sid_profile="/home/oracle/xxxprofile" table_owner="xxx" table_list_file="${table_owner}_tables.list" get_table_structures_sql="get_${table_owner}_table_structures.sql" table_structures_file="${table_owner}_table_structures.xls" base_dir="/home/oracle/dw_standbys" ## env init . ${sid_profile} cd ${base_dir} ## get table list sqlplus -S / as sysdba </d;/^$/d' ${table_list_file} ## generate sql script for getting table structures cat /dev/null >${get_table_structures_sql} # format sqlplus output as .xls file echo -e "set term off verify off feedback off pagesize 999 \nset markup html on entmap ON spool on preformat off">> ${get_table_structures_sql} # echo -e "alter session set current_schema=\"${table_owner}\";" >>${get_table_structures_sql} echo -e "spool ${table_structures_file}" >>${get_table_structures_sql} echo -e "col Count_Tables for 999999999\ncol GaterDate for a30\n col TableOwner for a20">>${get_table_structures_sql} echo -e "select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') GatherDate,'${table_owner}' TableOwner,(select count(1) from dba_tables where owner='${table_owner}') Count_Tables  from dual;">>${get_table_structures_sql} echo -e "col comment for a30" >>${get_table_structures_sql} for table_name in `cat ${table_list_file}` do   echo "select table_name,column_name,data_type,' ' as \"comment\" from DBA_TAB_COLS where owner=upper('${table_owner}') and table_name=upper('${table_name}');">>${get_table_structures_sql} done echo -e "spool off" >>${get_table_structures_sql} ## get table structures sqlplus -S / as sysdba <

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值