I made a mistake in the database naming scheme on the Amazon RDS SQL Server instance, but you do not have permission to delete it.
Can anyone give me any guidance?
thanks
Found the answer, if you change the user privileges by resetting the instance password, the user rights will also be reset
-- 1. Turn Database Mirroring OFF ALTER DATABASE [DB_NAME] SET PARTNER OFF; GO -- 2. Close all existing connections ALTER DATABASE [DB_NAME] SET single_user with rollback immediate GO -- 3. Drop the database DROP DATABASE [DB_NAME]; GO
None of these options worked for me. The result was a change in collection data. Once I disabled this by running the command
exec msdb.dbo.rds_cdc_disable_db '<database name>'
I managed to drop the database.
EXECUTE msdb.dbo.rds_drop_database '<dbname>'
Source: https://habr.com/ru/post/979339/More articles:Clickable link in TTTAttributedLabel with Swift - ioscmd msbuild errorlevel always 0 - cmdToggleswitch requires explicit "Mode = Twoway" - c #Saving row data with AngularJS ui-grid $ scope.saveRow - angularjsSend an Outlook Meeting Request with C # - c #Lack of connections to eclipse database - javaImportError: no module named xlsxwriter - python-2.7Scala - console based development workflow - scalaHow to plan C # unit tests with Jenkins? - c #What is better for performance, object cell arrays or heterogeneous arrays? - performanceAll Articles