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.
我通过函数 db.getCollectionNames() 获取所有集合名称。
但是一旦我开始分片,函数 db.getCollectionNames() 就不起作用了。
分片处于活动状态时如何获取数据库中的所有集合名称?
确保您选择了一个数据库:use <database>.
use <database>
如果还是不行,试试show collections。
show collections