u can take back up by query as follows
Transact-SQL commands executed from SQL Query Analyzer. An example of such a command is illustrated below.
BACKUP DATABASE northwind
TO DISK = 'd:\backups\northwind\nwind.bak'
using Transact-SQL commands. Assuming that the database backup file name is c:\backups\northwind\nwind.bak, the following command will restore the database to nwind_new:
RESTORE DATABASE nwind_new FROM DISK = 'c:\backups\northwind\nwind.bak'
WITH
MOVE 'northwind' TO 'd:\Program Files\Microsoft SQL
Server\Data\nwind_new.mdf'
MOVE 'northwind_log' TO 'd:\Program Files\Microsoft SQL
Server\Data\nwind_new_log.ldf'
http://technet.microsoft.com/en-us/library/cc966495.aspx