>Using Azure, how do I copy data from one database to another on different servers without changing the schema?
**Follow the below steps to copy data from one database to another database on different servers without changing the schema:**
**Step:1**
Open **SSMS** and right click on database and select `General Scripts`.

**Step:2**
Click on `Select specific database objects`. Now click on `Select All` and click on`Next`. 
**Step:3**
Select `Open in new script Window` and click on `Advance`.
**Step:4**
Select `Type of data to script` , `schema and data` and click on `OK`.

**Step:5**
Click `Next`, In the save script click on `Save Report` and `Finish`.
Upon clicking "Finish," I will open the script in the SSMS Query Editor, as demonstrated below:

Copy the above script and execute it on a different server database. Upon successful execution, it will create the schema along with the data, as illustrated in the image below.
