Monday, September 26, 2016

DATABASE LINK NOTES


  •  

    Links

    DATABASE LINK NOTES:
  • Owner - Owner of the database link
  • DBLink - Name of the database link
  • Username - Name of user to log in as
  • Host - SQL*Net string for connect
  • Created - Creation time of the database link

    select  OWNER,
     DB_LINK,
     USERNAME,
     HOST,
     to_char(CREATED,'MM/DD/YYYY HH24:MI:SS') created
    from   dba_db_links
    order by OWNER,DB_LINK
  • No comments:

    Post a Comment

    How To Fix Hive – Partition Table Query Failed When Stored As Parquet

    This article is about the bug in Hive filtering option, when the partition table query stored as parquet. Big data developers will help y...