• I think you will need to do a restore with move.

    restore database UMMCTEST

    from disk = '[wherever your backup is held]'

    with move '[your data file in the backup- probably called UMMC?]' to 'C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\UMMCTEST.mdf'

    ,move '[your log file in the backup- probably called something like UMMC_log?]' to 'C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA\UMMCTEST_log.ldf'

    '

    I've had to guess at your paths in that example; usually I wouldn't put the data and log files on the C drive but I was basing my examples on what you've written below. Change them to whatever they should be in your environment.

    If you don't know what your data and log files are called (their logical names), you can do;

    restore filelistonly from disk = '[wherever your backup is held]'

    Hope that makes sense.