Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Question description:


1. first create a database table .
2. then after make backup and recovery
Posted

1. We don't do your homework: try it yourself, you might find it easier than you think.
2. See 1 above.
 
Share this answer
 
Comments
Ashi0891 17-Aug-14 4:46am    
Thumbs up!!
1) Creating Table:

CREATE TABLE Persons
(
PersonID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255),
City varchar(255)
);


2) Backup and restore:

follow below link

http://www.sqlteam.com/article/backup-and-restore-in-sql-server-full-backups[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900