Snippet Name: DBA Links Description: Returns a list of database links and their owners. Also see:» Add PSOUG Search to SQL Developer » Converting Rows to Columns » Database Links: CURRENT_USER » Instant Test Database with DCBA » Show info on current context » Lookup Oracle error messages » Display and release DBMS_LOCK locks » Display locks and latches » Show rollback segment stats » Show active transactions » List supported INIT.ORA parameters » Display database SGA statistics » Measure the Buffer Cache Hit Ratio » List security related profile informat... » Find users with deadly privileges » Audit User Logins (User Login Trigger) » Block TOAD and other tools » Kill Session » Extents » DBA Users » DBA Tablespaces » DBA triggers » DBA Sessions » DBA Roles » DBA Objects » DBA Jobs » Job Queue » DBA Free Space » Data Files » DBA Extents Comment: (none) Language: Highlight Mode: PLSQL Last Modified: February 28th, 2009
Description: Returns a list of database links and their owners.
Also see:» Add PSOUG Search to SQL Developer » Converting Rows to Columns » Database Links: CURRENT_USER » Instant Test Database with DCBA » Show info on current context » Lookup Oracle error messages » Display and release DBMS_LOCK locks » Display locks and latches » Show rollback segment stats » Show active transactions » List supported INIT.ORA parameters » Display database SGA statistics » Measure the Buffer Cache Hit Ratio » List security related profile informat... » Find users with deadly privileges » Audit User Logins (User Login Trigger) » Block TOAD and other tools » Kill Session » Extents » DBA Users » DBA Tablespaces » DBA triggers » DBA Sessions » DBA Roles » DBA Objects » DBA Jobs » Job Queue » DBA Free Space » Data Files » DBA Extents
SET pages 999 col host format a30 col db_link format a30 col username format a8 SELECT owner,db_link,host,username FROM dba_db_links /