1 changed file
oracle_datafiles_checkpoint_change.sql + | ||
oracle_datafiles_checkpoint_change.sql
/oracle_datafiles_checkpoint_change.sql+25/oracle_datafiles_checkpoint_change.sql
Add comment 1 Plus --
Add comment 2 Plus -- Author: Hari Sekhon
Add comment 3 Plus -- Date: 2008-04-28 21:36:48 +0100 (Mon, 28 Apr 2008)
Add comment 4 Plus --
Add comment 5 Plus -- vim:ts=4:sts=4:sw=4:et:filetype=sql
Add comment 6 Plus --
Add comment 7 Plus -- https://github.com/HariSekhon/SQL-scripts
Add comment 8 Plus --
Add comment 9 Plus -- License: see accompanying Hari Sekhon LICENSE file
Add comment 10 Plus --
Add comment 11 Plus -- If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
Add comment 12 Plus --
Add comment 13 Plus -- https://www.linkedin.com/in/HariSekhon
Add comment 14 Plus --
Add comment 15 Plus
Add comment 16 Plus -- Oracle last tested in late 2000s on Oracle 9i - 11
Add comment 17 Plus
Add comment 18 Plus SELECT
Add comment 19 Plus checkpoint_change#,
Add comment 20 Plus file#
Add comment 21 Plus FROM
Add comment 22 Plus v$datafile
Add comment 23 Plus ORDER BY
Add comment 24 Plus checkpoint_change#;
Add comment 25 Plus