Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The tool contains the following features.

- **Templates** - for use with `New Project` and for adding new items
- **Import database** - import the schema and database settings from an existing database
- **Schema compare** - compare your database project with a live database and get a script to update the database or your project
- **Schema compare** - visually compare your database project with a live database and apply changes to the database or your project
- **Analyze** - report with static code analysis result of your database project
- **Create Mermaid E/R diagram** - create an Entity/Relationship diagram of selected tables from your database project
- **.dacpac Solution explorer node** - view the contents of a dacpac file in Solution Explorer
Expand Down
12 changes: 7 additions & 5 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,19 @@ The tool will create all the necessary files in your project, organized by objec

## Comparing Schemas

The schema compare feature helps you keep your database project in sync with your live databases. You can compare in both directions:
The visual schema compare feature helps you keep your database project in sync with your live databases. You can compare in both directions:

- Compare your project with a database to see what needs to be deployed
- Compare a database with your project to update your project files

To use schema compare:
![Schema Compare](../img/SchemaCompare.png)

To use visual schema compare:

1. Right-click on your SQL database project in Solution Explorer
2. Select **SQL Project Power Tools > Schema compare**
3. Choose your comparison source database and target (project or database)
4. Review the differences in the generated script
2. Select **SQL Project Power Tools > Visual Schema Compare (preview)...**
3. Choose your comparison source database and target direction
4. Review the differences in the visual schema compare tool window
5. Apply the changes as needed

This is especially useful when working in teams or managing multiple environments.
Expand Down
Loading