sql server - Restore a bacpac file to sql azure with large database size (SqlPackage.exe) -
i'm trying restore large (~10gb) database bacpac file using sqlpackage.exe. (command shown below). issue hit 1gb limit web databases during import , fails.
since can restore bacpac new database cant resize base database before importing data. on gui there option specify size cant find command line argument corresponds (see below screenshot). have read documentation. i'm trying possible?
.\lib\sqlserver\dac\bin\sqlpackage.exe /a:"import" /tdn:"qa02_sgp" /tp:"somepassword" /tsn:"somehostname.database.windows.net" /tu:"sa@somehostname" /sf ".\data\perftestdb.bacpac"
the create database t-sql allows specify database edition , max size
Comments
Post a Comment