0
我試圖從特定日期的特定模式中的所有表中獲取計數。我知道如何獲得計數,但與添加where子句掙扎。請指教。在oracle中按日期從所有表中獲取計數的動態sql
我試圖從特定日期的特定模式中的所有表中獲取計數。我知道如何獲得計數,但與添加where子句掙扎。請指教。在oracle中按日期從所有表中獲取計數的動態sql
在你PLSQL代碼:
select count(*) from dba_objects where object_type=''TABLE'' and owner=v_schema_name and created > v_date;
-- v_schema_name and v_date are passed in variables
你正在使用什麼數據庫?對於Oracle數據庫,請參閱包含CREATED列LAST_DDL_TIME列的dba_objects視圖。 – Dere0405
Oracle數據庫 – user803860