You have a database backup? Whether it's from a named instance doesn't matter. In instance 2, use
RESTORE DATABASE mydatabase
FROM DISK = 'filepath'
WITH RECOVERY
You'd use variations of this depending on whether you have additional differential and/or log backups. See 'RESTORE' in BOL for examples.