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.
可能重复: 如何获取 Sql Server 数据库中所有模式的列表
我设法看到了 sql server 2000 中的所有模式。我使用了以下语句
show search_path
但它失败了。
请试试:
SELECT * FROM INFORMATION_SCHEMA.SCHEMATA
有关更多信息,请参阅链接How do I get a list of all schemas in a Sql Server database
I need to create a heterogeneous List of objects (custom classes). My first thought was to create a List<ISomeMarkerInterface> but I quickly learned that this is not what I want
List
List<ISomeMarkerInterface>