Tagged Questions
The drop-table tag has no wiki summary.
7
votes
4answers
5k views
Dropping a table in SAS
What is the most efficient way to drop a table in SAS?
I have a program that loops and drops a large number of tables, and would like to know if there is a performance difference between PROC SQL; ...
5
votes
6answers
474 views
How to drop all tables in database without dropping the database itself?
I would like to delete all the tables from database, but not deleting the database itself. Is it possible ? I'm just looking for shorter way than removing the database and create it again. Thanks !
4
votes
2answers
202 views
Drop multiple tables in one shot in mysql
How to drop multiple tables from one single database at one command.
something like,
> use test;
> drop table a,b,c;
where a,b,c are the tables from database test.
2
votes
1answer
76 views
why can't i delete this SQL Server table [closed]
Possible Duplicate:
How to find foreign key dependencies in SQL Server?
i am trying to delete a table in SQL server mgmt studio by rightclicking and clicking "DELETE". I am getting this ...
1
vote
1answer
33 views
Drop query in sqlite
Possible duplicate
Hello all.
I have confusion in drop query that how actually it work in internally. I heard one of my post that someone says that when we use drop query then internally it'll be ...
1
vote
1answer
140 views
Drop_table problem preventing rake db:migrate
I was looking for a way to drop a table in Rails and start fresh and came across this answer: Rails DB Migration - How To Drop a Table?
However, when I ran drop_table :examples I got the following ...
1
vote
3answers
68 views
sql iterate through tables and drop if not certain name
I want to drop almost all the tables in my database (9000 in total).
Don't ask me why they are so many, too long to explain.
So I have 3 tables that I don't want to drop.
What sql statement can I ...
1
vote
2answers
440 views
SQLite “Drop table” error message: “SQL logic error or missing database”
I am running a SQLite database in memory and I am attempting to drop a table with the following command.
DROP TABLE 'testing' ;
But when I execute the SQL statement, I get this error
SQL logic ...
1
vote
2answers
790 views
Form has my table locked down tight even after docmd.close
Sorry for the wall of text guys but this one requires expliaining, way too much code to post...
I'm importing fixed width files into access in methods that require data entry. I import the file ...
0
votes
1answer
25 views
My script can't execute Drop table command SQL Server 2008
I have a script which has a DROP TABLE command like this:
IF EXISTS ( SELECT * FROM sys.objects WHERE object_id = OBJECT_ID('msdb.dbo.lobloblob') AND type in (N'U'))
DROP TABLE msdb.dbo.lobloblob
...