Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 Visual Studio 2012 中打开一个 SQL Server CE 4.0.sdf文件,它会出现在服务器资源管理器中。都好。
.sdf
但据我所知,它只显示常规表,而不是系统表。
有没有办法显示系统表?
不,要查看它们,您必须输入例如:
SELECT * FROM INFORMATION_SCHEMA.TABLES
这也意味着您必须提前知道名称(上面的命令顺便列出了所有可用的表)