BCP is an older tool and don't support a direct export to Azure storage.
You have to export the data first local and transfer it then to Azure.
See https://learn.microsoft.com/en-us/sql/tools/bcp-utility?view=sql-server-ver16 => data_file
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
BCP is an older tool and don't support a direct export to Azure storage.
You have to export the data first local and transfer it then to Azure.
See https://learn.microsoft.com/en-us/sql/tools/bcp-utility?view=sql-server-ver16 => data_file
You can export using SSMS if the size is below 200 GB. If its above, use SQLPackage, details below
Or you can use SQLPackage to import or export SQL Server and Azure SQL DB
Here is the details blog- https://techcommunity.microsoft.com/t5/azure-database-support-blog/using-sqlpackage-to-import-or-export-sql-server-and-azure-sql-db/ba-p/368861
Thank You!