Monday, September 26, 2016

DATABASE PROCEDURE/PACKAGE NOTES


  •  

    Procedures/Packages

    DATABASE PROCEDURE/PACKAGE NOTES:
  • Owner - Owner of the object
  • Name - Name of the object
  • Type - Type of object

    select OWNER,
     NAME,
     TYPE
    from   dba_source
    group by OWNER,NAME,TYPE
    order  by OWNER,NAME,TYPE
    

  • 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...