To find the database creation date you can query sysibm. sysversions or syscat. tables.
How do I see all created databases in MySQL?
SHOW DATABASES lists the databases on the MySQL server host. SHOW SCHEMAS is a synonym for SHOW DATABASES . The LIKE clause, if present, indicates which database names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in Section 26.8, “Extensions to SHOW Statements”.
How do you check who created DB in SQL Server?
select * from sys. databases.. you can find . bak files location and all databases owner_sid and you can find by Right click SQL Server Instance and Select Reports -> Standard Reports -> Schema Changes History mytechmantra.com/LearnSQLServer/… The only place where this information is written is in the transaction log.