1、连接上相应的linux主机,进入到等待输入shell指令的linux命令行状态下。
2、在命令行下输入shell指令:whereisoracle。
3、最后,按下回车键执行shell指令,此时会看到数据库oracle的具体位置被打印了出来。
要通过查询ORACLE的数据字典才能知道。1、查主键名称:
select * from user_constraints
where table_name = 'ART'
and constraint_type ='P'
查主键对应的列:
select * from user_cons_columns
where table_name = 'ART'
and constraint_name = 'PK_ART'
2、查索引名称:
select * from user_indexes
where table_name = 'ART'
查索引对应的列:
select * from user_ind_columns
where table_name = 'ART'
and index_name = 'INDX_BA'
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)