Link to home
Start Free TrialLog in
Avatar of csehz
csehzFlag 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,
ASKER CERTIFIED SOLUTION
Avatar of Pawan Kumar
Pawan Kumar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of csehz

ASKER

Thank you for the clarification