
Concept explainers
Use below command to build and load initial data to inventory collections.. There must be 8 documents in this collection. Run below command from command shell but show the result by taking screen shot from MongoDB Atlas
You can use any of your existing
db.inventory.insertMany( [
{ item: "journal", qty: 25, size: { h: 14, w: 21, uom: "cm" }, status: "A" },
{ item: "notebook", qty: 50, size: { h: 8.5, w: 11, uom: "in" }, status: "P" },
{ item: "paper", qty: 100, size: { h: 8.5, w: 11, uom: "in" }, status: "D" },
{ item: "planner", qty: 75, size: { h: 22.85, w: 30, uom: "cm" }, status: "D" },
{ item: "specialcard ", qty: 77, size: { h: 22.85, w: 30, uom: "cm" }, status: "A" },
{ item: "christmascard ", qty: 65, size: { h: 22.85, w: 30, uom: "cm" }, status: "D" },
{ item: "mothersdaycard", qty: 25, size: { h: 21.85, w: 30, uom: "cm" }, status: "D" },
{ item: "postcard", qty: 45, size: { h: 10, w: 15.25, uom: "cm" }, status: "A" },
] );
- Use find command to search results. Find documents where quantity qty equal to 75

Step by stepSolved in 2 steps with 2 images

- SBN Title Author 12345678 The Hobbit J.R.R. Tolkien 45678912 DaVinci Code Dan Brown Your student ID DBS311 Your Name use the following statement to Write the MongoDB Shell code to completely delete the entire database, including all collections and documentsarrow_forwardCreate a view name TopLevelCust view. It consists of the number, name, address, balance, and credit limt of clients with credit limits that are greater that or equal to $10,000.arrow_forwardHi good day i'm getting this error when trying to access localhost for my database. is there any way this can be fixed. if so can you assist in a step by step format? it would help a lot thanks. if you require any more information please let me know. Also please see the code attached Fatal error: Uncaught PDOException: SQLSTATE[HY000] [1049] Unknown database 'car_sales_db' in C:\xampp\htdocs\Tutorial\config.php:19 Stack trace: #0 C:\xampp\htdocs\Tutorial\index.php(2): require() #1 {main} thrown in C:\xampp\htdocs\Tutorial\config.php on line 19arrow_forward
- Security subject. Why might vendors propose proprietary encryption methods rather than using standard encryption technologies?arrow_forwardIn Oracle, a calculated field such as item_price * item_quantity differs from a table field in what way? Question 26 options: 1) A calculated field should be saved in the table after its value has been computed. 2) There is no difference. They are just synonyms for the same concept. 3) A calculated field's value appears in the output of a SELECT statement, but it is not physically stored as a field in the table. 4) A sum cannot be computed for a calculated field.arrow_forwardAssignment Create a database in Access. In the database include the following tables: • Student info which has the following fields o First Name o Last Name o StudentID (primary key) • Courses table which includes the following fields: o CourselD (primary key) o Course Name o CRN • Schedule which contains the following fields: o StudentID o CourselD Create the proper relationships between the tables. Fill the tables with at least 5 students and 2 different classes. You can generate the data randomly by using the Mockaroo site Or you can review Extra Material for more links on how to generate random data Create a report to print out the course and the names of the students taking that course (so group by course). Make sure the report is well formatted, looks professional, include a professional header and a footer.arrow_forward
- Task 5: The Developers team also wants you to ensure that emails are converted to lowercase after an update operation. Currently, new insertions are guaranteed to have lowercase emails, but there is no such guarantee for legacy emails. Therefore, the team wants to ensure that emails are being retained in a lowercase irrespective of any changes in the database. Create a new TRIGGER called email_update for the USERS table that runs before an UPDATE operation. Task: Create a TRIGGER to run on the USERS table before any UPDATE operation. (SQL Database Test): Create a TRIGGER before any UPDATE operations on the USERS tablearrow_forwardChapter 17 How to manage database security Exercises using the My Guitar Shop Database Use Microsoft SQL Server Write a script that creates a user-defined database role named OrderEntry in the MyGuitarShop database. Give INSERT and UPDATE permission to the new role for the Orders and OrderItems table. Give SELECT permission for all user tables. 2.Write a script that (1) creates a login ID named “RobertHalliday” with the password “HelloBob”; (2) sets the default database for the login to the MyGuitarShop database; (3) creates a user named “RobertHalliday” for the login; and (4) assigns the user to the OrderEntry role you created in exercise 1.arrow_forwardCreate another application/class named EmployeeDatabase that allows you to store anarray that acts as a database of any number of Employee objects up to 25. While the userdecides to continue, offer three options: to add a record to the database, to delete a recordfrom the database, or to change a record in the database. Then proceed as follows:If the user selects the add option, issue an error message if the database is full.Otherwise, prompt the user for an Id. If the Id already exists in the database, issuean error message. Otherwise, prompt the user for rest of the inputs and add the newrecord to the database.If the user selects the delete option, issue an error message if the database is empty.Otherwise, prompt the user for an Id. If the Id does not exist, issue an error message.Otherwise, delete the record.If the user selects the change option, issue an error message if the database is empty.Otherwise, prompt the user for an Id. If the requested record does not exist, issuean…arrow_forward
- he Car Maintenance team wants to add new maintenance tasks to the MAINTENANCES table which was created in Chapter 8, Activity 1. However, the team also wants to insert the tasks in a batch into the database. In other words, they want to insert the rows all together without inserting one-by-one. Therefore, you will need to create a script to add the following tasks and ensure that they are added together: Car ID: 1001, Maintenance Type: 2, Due: 2022-06-01 Car ID: 1003, Maintenance Type: 2, Due: 2022-06-01arrow_forwardCreate a user Nurse. (Screenshot 1) Create a database Hospital. (Screenshot 2) Grant Nurse privileges to Hospital (Screenshot 3) As Nurse, create a table Patients with the following structure. (Screenshot 4) PatientID RoomNo FirstName LastName Admission Temperature double(10,2) int(8) Primary Key and not null int(4) varchar(14) not null varchar(14) not null datetime Use a command to describe the table(Screenshot 5) Insert 2 patients randomly to the above table(Screenshot 6) Show all the contents of the table. (Screenshot 7)arrow_forwardThe Developers team also wants you to ensure that emails are converted to lowercase after an update operation. Currently, new insertions are guaranteed to have lowercase emails, but there is no such guarantee for legacy emails. Therefore, the team wants to ensure that emails are being retained in a lowercase irrespective of any changes in the database. Create a new TRIGGER called email_update for the USERS table that runs before an UPDATE operation. Task Create a TRIGGER to run on the USERS table before any UPDATE operation.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





