Monday, September 26, 2016

DATABASE FILE NOTES


  •  

    Files

    DATABASE FILE NOTES:
  • Filename - Name of the file(s)
  • Location - Location of the file(s)

    select  'Archived Log Directory' "Filename",
     value "Location"
    from  v$parameter
    where  name = 'log_archive_dest'
    UNION
    select  'Control Files' "Filename",
     value "Location"
    from  v$parameter
    where   name = 'control_files'
    UNION
    select  'Datafile' "Filename",
     name "Location"
    from    v$datafile
    UNION
    select  'LogFile Member' "Filename",
     member "Location"
    from   v$logfile
  • 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...