views:

553

answers:

3

Hi

Is there a way to list all sqlce database table indexes, or at least for individual tables?

+7  A: 

-- Retrieves information about the indexes contained in the database. SELECT * FROM INFORMATION_SCHEMA.INDEXES

-- Retrieves all the Tables in the database including the System tables. SELECT * FROM INFORMATION_SCHEMA.TABLES

Arjuna Chiththananda - Retrieving Schema Information of SQL CE Database

Max Gontar
thx, that worked
Konstantinos
A: 

Try SDF Viewer by Flyhoward Ltd to view all index details for your sql ce version 3.1 or 3.5 database