使用select语句查询system用户下的logmnr_parameter$表中的字段信息。

实现思路:

通过数据字典dba_tab_columns查询该表的字段的信息。

查询语句如下:

desc dba_tab_columns;

select columns_id,columns_name from dba_tab_columns where table_name='LOGMNR_PARAMETER$

注:通过第一条语句可以看到该表在该数据字典中,另外,where子句中需注意表的名称需要大写

 

相关文章:

  • 2021-10-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2022-12-23
  • 2022-01-27
  • 2022-12-23
猜你喜欢
  • 2021-07-14
  • 2022-12-23
  • 2021-12-31
  • 2022-01-16
  • 2022-02-26
  • 2021-12-12
  • 2021-12-09
相关资源
相似解决方案