MongoDB – Insert Document ”; Previous Next In this chapter, we will learn how to insert document in MongoDB collection. The insert() Method To insert data into MongoDB collection, you need to use MongoDB”s insert() or save() method. Syntax The basic syntax of insert() command is as follows − >db.COLLECTION_NAME.insert(document) Example > db.users.insert({ … _id : ObjectId(“507f191e810c19729de860ea”), … title: “MongoDB Overview”, … description: “MongoDB is no sql database”, … by: “tutorials point”, … url: “http://www.tutorialspoint.com”, … tags: [”mongodb”, ”database”, ”NoSQL”], … likes: 100 … }) WriteResult({ “nInserted” : 1 }) > Here mycol is our collection name, as created in the previous chapter. If the collection doesn”t exist in the database, then MongoDB will create this collection and then insert a document into it. In the inserted document, if we don”t specify the _id parameter, then MongoDB assigns a unique ObjectId for this document. _id is 12 bytes hexadecimal number unique for every document in a collection. 12 bytes are divided as follows − _id: ObjectId(4 bytes timestamp, 3 bytes machine id, 2 bytes process id, 3 bytes incrementer) You can also pass an array of documents into the insert() method as shown below:. > db.createCollection(“post”) > db.post.insert([ { title: “MongoDB Overview”, description: “MongoDB is no SQL database”, by: “tutorials point”, url: “http://www.tutorialspoint.com”, tags: [“mongodb”, “database”, “NoSQL”], likes: 100 }, { title: “NoSQL Database”, description: “NoSQL database doesn”t have tables”, by: “tutorials point”, url: “http://www.tutorialspoint.com”, tags: [“mongodb”, “database”, “NoSQL”], likes: 20, comments: [ { user:”user1″, message: “My first comment”, dateCreated: new Date(2013,11,10,2,35), like: 0 } ] } ]) BulkWriteResult({ “writeErrors” : [ ], “writeConcernErrors” : [ ], “nInserted” : 2, “nUpserted” : 0, “nMatched” : 0, “nModified” : 0, “nRemoved” : 0, “upserted” : [ ] }) > To insert the document you can use db.post.save(document) also. If you don”t specify _id in the document then save() method will work same as insert() method. If you specify _id then it will replace whole data of document containing _id as specified in save() method. The insertOne() method If you need to insert only one document into a collection you can use this method. Syntax The basic syntax of insert() command is as follows − >db.COLLECTION_NAME.insertOne(document) Example Following example creates a new collection named empDetails and inserts a document using the insertOne() method. > db.createCollection(“empDetails”) { “ok” : 1 } > db.empDetails.insertOne( { First_Name: “Radhika”, Last_Name: “Sharma”, Date_Of_Birth: “1995-09-26”, e_mail: “[email protected]”, phone: “9848022338” }) { “acknowledged” : true, “insertedId” : ObjectId(“5dd62b4070fb13eec3963bea”) } > The insertMany() method You can insert multiple documents using the insertMany() method. To this method you need to pass an array of documents. Example Following example inserts three different documents into the empDetails collection using the insertMany() method. > db.empDetails.insertMany( [ { First_Name: “Radhika”, Last_Name: “Sharma”, Date_Of_Birth: “1995-09-26”, e_mail: “[email protected]”, phone: “9000012345” }, { First_Name: “Rachel”, Last_Name: “Christopher”, Date_Of_Birth: “1990-02-16”, e_mail: “[email protected]”, phone: “9000054321” }, { First_Name: “Fathima”, Last_Name: “Sheik”, Date_Of_Birth: “1990-02-16”, e_mail: “[email protected]”, phone: “9000054321” } ] ) { “acknowledged” : true, “insertedIds” : [ ObjectId(“5dd631f270fb13eec3963bed”), ObjectId(“5dd631f270fb13eec3963bee”), ObjectId(“5dd631f270fb13eec3963bef”) ] } > Print Page Previous Next Advertisements ”;
Category: mongodb
MongoDB – Create Database
MongoDB – Create Database ”; Previous Next In this chapter, we will see how to create a database in MongoDB. The use Command MongoDB use DATABASE_NAME is used to create database. The command will create a new database if it doesn”t exist, otherwise it will return the existing database. Syntax Basic syntax of use DATABASE statement is as follows − use DATABASE_NAME Example If you want to use a database with name <mydb>, then use DATABASE statement would be as follows − >use mydb switched to db mydb To check your currently selected database, use the command db >db mydb If you want to check your databases list, use the command show dbs. >show dbs local 0.78125GB test 0.23012GB Your created database (mydb) is not present in list. To display database, you need to insert at least one document into it. >db.movie.insert({“name”:”tutorials point”}) >show dbs local 0.78125GB mydb 0.23012GB test 0.23012GB In MongoDB default database is test. If you didn”t create any database, then collections will be stored in test database. Print Page Previous Next Advertisements ”;
MongoDB – Environment
MongoDB – Environment ”; Previous Next Let us now see how to install MongoDB on Windows. Install MongoDB On Windows To install MongoDB on Windows, first download the latest release of MongoDB from https://www.mongodb.com/download-center. Enter the required details, select the Server tab, in it you can choose the version of MongoDB, operating system and, packaging as: Now install the downloaded file, by default, it will be installed in the folder C:Program Files. MongoDB requires a data folder to store its files. The default location for the MongoDB data directory is c:datadb. So you need to create this folder using the Command Prompt. Execute the following command sequence. C:>md data C:md datadb Then you need to specify set the dbpath to the created directory in mongod.exe. For the same, issue the following commands. In the command prompt, navigate to the bin directory current in the MongoDB installation folder. Suppose my installation folder is C:Program FilesMongoDB C:UsersXYZ>d:cd C:Program FilesMongoDBServer4.2bin C:Program FilesMongoDBServer4.2bin>mongod.exe –dbpath “C:data” This will show waiting for connections message on the console output, which indicates that the mongod.exe process is running successfully. Now to run the MongoDB, you need to open another command prompt and issue the following command. C:Program FilesMongoDBServer4.2bin>mongo.exe MongoDB shell version v4.2.1 connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb Implicit session: session { “id” : UUID(“4260beda-f662-4cbe-9bc7-5c1f2242663c”) } MongoDB server version: 4.2.1 > This will show that MongoDB is installed and run successfully. Next time when you run MongoDB, you need to issue only commands. C:Program FilesMongoDBServer4.2bin>mongod.exe –dbpath “C:data” C:Program FilesMongoDBServer4.2bin>mongo.exe Install MongoDB on Ubuntu Run the following command to import the MongoDB public GPG key − sudo apt-key adv –keyserver hkp://keyserver.ubuntu.com:80 –recv 7F0CEB10 Create a /etc/apt/sources.list.d/mongodb.list file using the following command. echo ”deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen” | sudo tee /etc/apt/sources.list.d/mongodb.list Now issue the following command to update the repository − sudo apt-get update Next install the MongoDB by using the following command − apt-get install mongodb-10gen = 4.2 In the above installation, 2.2.3 is currently released MongoDB version. Make sure to install the latest version always. Now MongoDB is installed successfully. Start MongoDB sudo service mongodb start Stop MongoDB sudo service mongodb stop Restart MongoDB sudo service mongodb restart To use MongoDB run the following command. mongo This will connect you to running MongoDB instance. MongoDB Help To get a list of commands, type db.help() in MongoDB client. This will give you a list of commands as shown in the following screenshot. MongoDB Statistics To get stats about MongoDB server, type the command db.stats() in MongoDB client. This will show the database name, number of collection and documents in the database. Output of the command is shown in the following screenshot. Print Page Previous Next Advertisements ”;
MongoDB – Overview
MongoDB – Overview ”; Previous Next MongoDB is a cross-platform, document oriented database that provides, high performance, high availability, and easy scalability. MongoDB works on concept of collection and document. Database Database is a physical container for collections. Each database gets its own set of files on the file system. A single MongoDB server typically has multiple databases. Collection Collection is a group of MongoDB documents. It is the equivalent of an RDBMS table. A collection exists within a single database. Collections do not enforce a schema. Documents within a collection can have different fields. Typically, all documents in a collection are of similar or related purpose. Document A document is a set of key-value pairs. Documents have dynamic schema. Dynamic schema means that documents in the same collection do not need to have the same set of fields or structure, and common fields in a collection”s documents may hold different types of data. The following table shows the relationship of RDBMS terminology with MongoDB. RDBMS MongoDB Database Database Table Collection Tuple/Row Document column Field Table Join Embedded Documents Primary Key Primary Key (Default key _id provided by MongoDB itself) Database Server and Client mysqld/Oracle mongod mysql/sqlplus mongo Sample Document Following example shows the document structure of a blog site, which is simply a comma separated key value pair. { _id: ObjectId(7df78ad8902c) title: ”MongoDB Overview”, description: ”MongoDB is no sql database”, by: ”tutorials point”, url: ”http://www.tutorialspoint.com”, tags: [”mongodb”, ”database”, ”NoSQL”], likes: 100, comments: [ { user:”user1”, message: ”My first comment”, dateCreated: new Date(2011,1,20,2,15), like: 0 }, { user:”user2”, message: ”My second comments”, dateCreated: new Date(2011,1,25,7,45), like: 5 } ] } _id is a 12 bytes hexadecimal number which assures the uniqueness of every document. You can provide _id while inserting the document. If you don’t provide then MongoDB provides a unique id for every document. These 12 bytes first 4 bytes for the current timestamp, next 3 bytes for machine id, next 2 bytes for process id of MongoDB server and remaining 3 bytes are simple incremental VALUE. Print Page Previous Next Advertisements ”;