- Prerequisites: Ensure you have Microsoft Access and SQL Server Management Studio (SSMS) installed on your computer.
- Software Installation: Install the software following the provided instructions.
- Database Download: Download the
ServiceAppointmentSystem.bak
file.
- SSMS Connection: Open SSMS and connect using your Windows login account.
- Create Database: Create a new database named "ServiceAppointmentSystem" by right-clicking the Databases button.
- Restore Database:
- Select Databases > Restore Database...
- Choose the source from Device > click ... > Add > Select
ServiceAppointmentSystem.bak
> OK > OK > Verify Backup Media. - If you encounter a warning about "Tail-log backups...", go to the Options page and unselect that option.
- Change Owner: Once restored, change the owner:
USE ServiceAppointmentSystem; EXEC sp_changedbowner 'yourlastnameUser', 'true';
- Update Login: Navigate to Security > Logins and update the
yourlastnameUser
login to haveServiceAppointmentSystem
as the default database.
- Create New Database: Click File -> New -> Blank Database. Set the name and location, then click Create.
- External Data: Click External Data on the Ribbon.
- New Data Source: Select New Data Source > From Database > From SQL Server.
- Link to Data Source: Choose Link to the data source by creating a linked table > OK.
- Machine Data Source: Choose Machine Data Source > New...
- User Data Source: Choose User Data Source > Next > Choose SQL Server Or ODBC > Next > Finish.
- Input Name and Description: Input a name and description for the Data Source.
- Select SQL Server: Select the SQL Server you want to connect to.
- Authentication Method: Choose "With SQL Server Authentication using a login ID and password entered by the user".
- Login ID and Password: Enter your SQL Server login ID and password.
- Click Finish: Click Finish to return to the Select Data Source dialog.
- Choose Data Source: Choose the data source you just created.
- Click OK: Click OK.
- Enter Password: Enter your password in the SQL Server Login dialog box.
- Select Tables: In the Link Tables dialog box, select the desired tables and click OK.
- Right-Click Database: Right-click on the database icon.
- Select Task: Choose "Task" from the context menu.
- Choose Backup: Select the "Backup" option.
- Click OK: Click OK to start the backup process.
Note: These instructions provide a general overview. Refer to the accompanying application description or functionality for more detailed information.