문제

I can open a SQL Server CE 4.0 .sdf file in Visual Studio 2012 and it appears in the Server Explorer. All good.

But as far as I can tell it only shows the regular tables, not system tables.

Is there a way to show system tables?

도움이 되었습니까?

해결책

No, in order to see them, you must type for example:

SELECT *  FROM INFORMATION_SCHEMA.TABLES

Which also means you must know the name in advance (the command above lists all available tables by the way)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top