Click here to Skip to main content
16,013,642 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to drop group of tables in server explorer in visual studio 2008
Posted
Comments
ZurdoDev 19-Jul-13 8:30am    
What's the problem?

Select table and press delete button it will delete the table.

Thanks,
 
Share this answer
 
You can do the same using query:
SQL
USE [DatabaseName];
GO
DROP TABLE [TableName]
 
Share this answer
 
Refer - [MSDN] How to: Manage Tables in a Database (Devices)[^].
Quote:

To remove a table


  1. On the View menu, click Server Explorer.

  2. In Server Explorer, expand the data connection from which you want to drop a table.

  3. Under Tables, right-click the table you want to delete, and then click Drop Table.

  4. In the Delete Objects dialog box, click Remove, and then click OK.

    NoteNote:

    You cannot remove a table until all references to the table are deleted.

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900