Tagged Questions
The drop-database tag has no wiki summary.
5
votes
1answer
1k views
Reclaim disk space after drop database in mysql
I've created some very large databases and have since dropped a few. I've noticed my disk space has not recovered as much as I had expected. For instance, the last database I added actually used up ...
1
vote
6answers
271 views
Delete sqlite db file
I am developing a C# application with its backend as sqlite. In my application I have a button for cleaning the database (deleting the .db file and creating it again with some initial data). Sometimes ...
1
vote
2answers
486 views
SQLCMD - trying to drop a database with alphanumeric name '14Data' gives Syntax Error
I am using SQL SERVER 2005 Express. I can delete the database from the query analyzer, what you call Mgmt Studio (ssmsee) by providing double quotes to the database name and things get done;
Drop ...
1
vote
1answer
574 views
How do I drop SQL Databases? sp_delete_database_backuphistory woes
I want to delete some SQL Databases on my server, but I'm having problems.
My login has the roles:
public
dbcreator
serveradmin
When I right click the database and hit Delete, it says that
...
0
votes
1answer
135 views
Make ADO.NET (and EntityFramework) release a database
I'm creating and dropping databases on the fly for some integration tests. I'm doing all the database management at the ADO.NET level. For the tests I'm using Entity Framework because the entities is ...