Could you please try the below and let us know if that works.
In SSMS, connect to both servers in a different tenant.
Once you are connected, click on the database name where you want to coly the objects from by selecting select "Tasks" > "Generate Scripts". In the "Generate Scripts" wizard, select the objects you want to copy and choose the "Script entire database and all database objects" option. Then, choose the output format for the script (e.g., SQL file) and save the script to a file.
- Modify the script: After generating the script, you can modify it to remove any references to the data in the database. You can do this by removing any INSERT, UPDATE, or DELETE statements from the script if needed.
- Execute the script on the target tenant: Once you have modified the script, you can execute it on the target tenant to create the database schema and objects. You can do this by connecting to the target tenant in SSMS or ADS and running the script.
By following these steps, you can copy the objects of an Azure SQL Database from one tenant to another tenant without copying the data. Keep in mind that this method only copies the database schema and objects and does not copy any data or user permissions. You will need to manually recreate any data and user permissions on the target tenant.
Hope that helps.
Regards,
Oury