Dear Experts,
Could you please advise about the SQL code which would list the tables with their creation date and creator?
Actually having the following code which lists the creation and modification date, but did not find the creator
SELECT
name,
object_id,
create_date,
modify_date
FROM
sys.tables
Open in new window
Thanks in advance,