export
12 TopicsExport Azure SQL DB Error: "Missing the required 'administratorLogin' parameters for ImportExport operation."
First published on MSDN on May 09, 2018 Few days ago, I have been working on an issue that customer trying to Export Azure SQL Database using Azure Portal, facing this Error Message:ErrorCode: 400ErrorMessage: Missing the required 'administratorLogin' parameters for ImportExport operation.3.4KViews0likes0CommentsExport Azure SQL Database to local path
First published on MSDN on Mar 25, 2018 We noticed a few requests come to our support queue asking for a feasibility to export Azure SQL Database to local path directly, so following steps below to build PowerShell script that can do that job to copy Azure SQL Database to another db for consistency, then export Azure SQL Database to blob storage, later connect to a single or all storage container and download blob files locally:First you need to save your Azure login credential to be able to use saved profile credential later to automate login to Azure subscription, to do so, please follow below steps: Open Windows PowerShell ISE Copy/past below command # Setup – First login manually per previous section Add-AzureRmAccount# Now save your context locally (Force will overwrite if there)$path = "C:\Azure\PS\ProfileContext1.3.5KViews0likes0CommentsWhat will happen with CATALOG_COLLATION and Case Sensitive vs Case Insensitive
First published on MSDN on Feb 15, 2018 One of the options available when creating a database is the CATALOG_COLLATION, by default this is going to be SQL_Latin1_General_CP1_CI_AS , even if you take the trouble of specifying a database collation , the catalog collation will be SQL_Latin1_General_CP1_CI_AS unless you say otherwise.