Thanks Tara this is the final SQL. As you can see I am new to SQL server but I would have thought that there would have been an Stored Procedure to do this instead of writing some SQL. -- Finding out which login owns a particular database.SELECT SPS.[NAME] As Login_Name , dbs.[Name] As Database_Name , dbs.Create_dateFROM sys.server_principals SPS INNER JOIN sys.databases dbs ON sps.SID = dbs.owner_sid WHERE sps.[name] = 'Your_login_Name';
Thanks for the help again!Dallr