Execute the following SQL Server T-SQL script in SSMS Query Analyzer to find the login name of the dbo:
USE master;
SELECT SUSER_SNAME(sid)
FROM master..sysdatabases
WHERE name = 'Northwind'
GO
/* Result
sa
*/