mongodb 如何檢視索引
MongoDB提供了檢視索引資訊的方法:getIndexes()方法可以用來檢視集合的所有索引,totalIndexSize()檢視集合索引的總大小,db.system.indexes.find()檢視資料庫中所有索引資訊。
1、檢視集合中的索引:getIndexes()
db.COLLECTION_NAME.getIndexes()
如,檢視集合sites中的索引:
>db.sites.getIndexes() [ { "v" : 1, "key" : { "_id" : 1 }, "name" : "_id_", "ns" : "newDB.sites" }, { "v" : 1, "key" : { "name" : 1, "domain" : -1 }, "name" : "name_1_domain_-1", "ns" : "newDB.sites" } ]
2、檢視集合中的索引大小:totalIndexSize()
db.COLLECTION_NAME.totalIndexSize()
如,檢視集合sites索引大小:
> db.sites.totalIndexSize() 16352
3、檢視資料庫中所有索引:db.system.indexes.find()
db.system.indexes.find()
如,當前資料庫的所有索引:
> db.system.indexes.find()
python學習網,大量的免費,歡迎線上學習!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/506/viewspace-2835348/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【Mongo】MongoDB索引管理-索引的建立、檢視、刪除MongoDB索引
- 【Oracle】如何查詢檢視時使用索引Oracle索引
- mysql 檢視索引MySql索引
- 教你如何用MongoDB檢視版本資訊詳解MongoDB
- 如何檢視MongoDB分片chunksize的值的大小MongoDB
- 使用index_stats檢視檢視索引效率Index索引
- MongoDB系列一(索引及C#如何操作MongoDB)MongoDB索引C#
- mongodb資料庫如何建立索引?MongoDB資料庫索引
- MongoDB如何在後臺建立索引MongoDB索引
- mysql建立索引和檢視MySql索引
- MongoDB 索引MongoDB索引
- mongodb索引MongoDB索引
- mysql檢視錶建立的索引MySql索引
- 物化檢視上使用bitmap索引索引
- mongodb索引使用MongoDB索引
- mongoDB的索引MongoDB索引
- MongoDB索引概述MongoDB索引
- MongoDB之索引(地理資訊索引)MongoDB索引
- MongoDB之索引(全文索引)MongoDB索引
- MongoDB之索引(過期索引)MongoDB索引
- MongoDB之索引(唯一索引)MongoDB索引
- Oracle 索引的使用情況檢視Oracle索引
- mysql 建立索引的方法--建立檢視MySql索引
- oracle學習筆記——檢視、索引Oracle筆記索引
- 使用treedump事件檢視索引結構事件索引
- MongoDB索引,效能分析MongoDB索引
- 語法檢視錶結構,索引mysql索引MySql
- 資料庫檢視,索引,觸發器資料庫索引觸發器
- MongoDB 檢視DDL檢視not authorized on xxx to execute command { find: system.viewsMongoDBZedView
- mongodb建立索引和刪除索引和背景索引backgroundMongoDB索引
- MongoDB ( 五 )高階_索引MongoDB索引
- MongoDB之索引(簡介)MongoDB索引
- MongoDB索引實戰技巧MongoDB索引
- DB2檢視索引的使用情況DB2索引
- MSSQL索引檢視(indexed view)之簡述及使用SQL索引IndexView
- 快速掌握mongoDB(三)——mongoDB的索引詳解MongoDB索引
- 【MongoDB學習筆記】MongoDB索引那點事MongoDB筆記索引
- 資料庫系統原理(四)——檢視與索引資料庫索引