tags:

views:

37

answers:

1

Hello,

I have a simple question: How to drop all indexes of a sqlite table? I have multiple indexes created with random name.

Regards,
Pentium10

+1  A: 

I'm not aware that you can drop ALL indexes in one command - IMO you have to drop each by name. See also: http://www.sqlite.org/lang_dropindex.html Also, check this out for additional info: http://stackoverflow.com/questions/525512/drop-all-tables-command

Mr-sk
I need to drop indexes of a table only, not all from the database.
Pentium10