Avatar of csehz
csehz
Flag for Hungary

asked on 

SQL - When a table was created and by who

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,
Microsoft SQL ServerSQL

Avatar of undefined
Last Comment
csehz

8/22/2022 - Mon