How to take login and user backup in SQL Server?
In the SQL Server Management Studio, navigate to Security Logins, Right -click the Logins root folder and select New Logins. Right -clicks the Logins root folder and select New Login folder and select New Login . On the General page, specify a login name in the Login name field. Select authentication mode.
Take a backup
to take a back up of your data base, follow these steps , using SQL server Management Studio or Transact-SQL;
For SSMS;
1. Launch SQL Server Management Studio and connect to your SQL Server instance.
2. Expand the databases node in Object Explorer.
3.Right click the data base, hover over Tasks, and select Backup..
4. Under destination confirm that the path for your backup is correct. If you need to change the path, select remove to remove the existing path, and then Add to type in a new path, You can use the ellipses to navigate to a specific file.
5. Select ok to take a backup of your database.
Comments
Post a Comment