Posts in 2016

  • Maven Skip Test

    Thursday, January 21, 2016 in Build

    Any of the following option can be used to skip the tests during build process. Option 1: -DskipTests Option 2: -DskipTests=true Option 3: -Dmaven.test.skip=true Option 4: -Darguments="-DskipTests"

    Read more

  • Oracle Invalid Objects

    Wednesday, January 20, 2016 in Oracle

    Get List of Invalid Objects Following query can be used to get the list of Invalid objects. SELECT object_type, object_name FROM user_objects WHERE STATUS != 'VALID' ORDER BY object_type; or SELECT owner, object_type, object_name FROM …

    Read more