-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- %help db : db method help message * help message referred by mongodb shell help message.
- Loading branch information
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
DB_METHODS = """ | ||
db.addUser(userDocument) | ||
db.adminCommand(nameOrDocument) - switches to 'admin' db, and runs command [ just calls db.runCommand(...) ] | ||
db.auth(username, password) | ||
db.cloneDatabase(fromhost) | ||
db.commandHelp(name) returns the help for the command | ||
db.copyDatabase(fromdb, todb, fromhost) | ||
db.createCollection(name, { size : ..., capped : ..., max : ... } ) | ||
db.currentOp() displays currently executing operations in the db | ||
db.dropDatabase() | ||
db.eval(func, args) run code server-side | ||
db.fsyncLock() flush data to disk and lock server for backups | ||
db.fsyncUnlock() unlocks server following a db.fsyncLock() | ||
db.getCollection(cname) same as db['cname'] or db.cname | ||
db.getCollectionNames() | ||
db.getLastError() - just returns the err msg string | ||
db.getLastErrorObj() - return full status object | ||
db.getMongo() get the server connection object | ||
db.getMongo().setSlaveOk() allow queries on a replication slave server | ||
db.getName() | ||
db.getPrevError() | ||
db.getProfilingLevel() - deprecated | ||
db.getProfilingStatus() - returns if profiling is on and slow threshold | ||
db.getReplicationInfo() | ||
db.getSiblingDB(name) get the db at the same server as this one | ||
db.hostInfo() get details about the server's host | ||
db.isMaster() check replica primary status | ||
db.killOp(opid) kills the current operation in the db | ||
db.listCommands() lists all the db commands | ||
db.loadServerScripts() loads all the scripts in db.system.js | ||
db.logout() | ||
db.printCollectionStats() | ||
db.printReplicationInfo() | ||
db.printShardingStatus() | ||
db.printSlaveReplicationInfo() | ||
db.removeUser(username) | ||
db.repairDatabase() | ||
db.resetError() | ||
db.runCommand(cmdObj) run a database command. if cmdObj is a string, turns it into { cmdObj : 1 } | ||
db.serverStatus() | ||
db.setProfilingLevel(level,<slowms>) 0=off 1=slow 2=all | ||
db.setVerboseShell(flag) display extra information in shell output | ||
db.shutdownServer() | ||
db.stats() | ||
db.version() current version of the server | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters