The answer is No. Your restore command will look something like:
RESTORE DB <backedup db name> from <dir where image is> taken at <timestamp of backup image (should be part of name)> into <new DB name> replace existing (if the new DB exists) redirect (if you want to change the tablespace configuration) without prompting
Note: if you are doing a REDIRECTed restore, please read the command reference manual on how to do this.
Then copy the logs to the log directory of the new database, then issue
a ROLLFORWARD command.
HTH
Andy