I\'m trying to go through our development DB right now and clean up some of the old test procs/tables. Is it possible to determine what user created objects in a SQL Server
If each user has its own SQL Server login you could try this
select so.name, su.name, so.crdate from sysobjects so join sysusers su on so.uid = su.uid order by so.crdate