top of page

How to last compile data and time in Oracle

Writer's picture: Rumesh Aponso (RMAX)Rumesh Aponso (RMAX)
SELECT t.last_ddl_time, t.*
FROM   all_objects t
WHERE  t.object_type = 'PACKAGE BODY'
AND    t.OBJECT_NAME = 'CUSTOMER_ORDER_API';

2 views0 comments

Related Posts

See All

LISTAGG in PLSQL

Example 1: SELECT DISTINCT LISTAGG(t.commission_receiver, ';') WITHIN GROUP (ORDER BY t.commission_receiver) FROM...

Get Foundation Error from ORA Error

FUNCTION Strip_Ora_Error ( sqlerrm_        IN VARCHAR2,    sqlcode_        IN NUMBER DEFAULT NULL,    strip_ora_only_ IN BOOLEAN DEFAULT...

Comentarios


Copyright © 2025 RMAXOneNote

  • Online CV
  • LinkedIn
  • Youtube
  • GitHub
  • Blogger
bottom of page