100% found this document useful (2 votes)
24 views12 pages

Solution Manual For Oracle 12c: SQL 3rd Edition Casteel Instant Download

The document provides links to various solution manuals and test banks for Oracle SQL and other subjects. It includes specific resources for Oracle 12c SQL, SQL Fundamentals, and various academic subjects. Additionally, it features examples of database relationships and queries relevant to the course material.

Uploaded by

itssamsipala
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (2 votes)
24 views12 pages

Solution Manual For Oracle 12c: SQL 3rd Edition Casteel Instant Download

The document provides links to various solution manuals and test banks for Oracle SQL and other subjects. It includes specific resources for Oracle 12c SQL, SQL Fundamentals, and various academic subjects. Additionally, it features examples of database relationships and queries relevant to the course material.

Uploaded by

itssamsipala
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Solution Manual for Oracle 12c: SQL 3rd Edition

Casteel download

https://testbankmall.com/product/solution-manual-for-
oracle-12c-sql-3rd-edition-casteel/

Find test banks or solution manuals at testbankmall.com today!


We have selected some products that you may be interested in
Click the link to download now or visit testbankmall.com
for more options!.

Solution Manual for Oracle SQL By Example, 4/E 4th Edition


Alice Rischert

https://testbankmall.com/product/solution-manual-for-oracle-sql-by-
example-4-e-4th-edition-alice-rischert/

Solution Manual for SQL Fundamentals, 3/E 3rd Edition :


0137126026

https://testbankmall.com/product/solution-manual-for-sql-
fundamentals-3-e-3rd-edition-0137126026/

Test Bank for Guide to Oracle 10g, 5th Edition: Morrison

https://testbankmall.com/product/test-bank-for-guide-to-
oracle-10g-5th-edition-morrison/

Test Bank for Out of Many: A History of the American


People, Brief Edition, Volume 1 (Chapters 1-17), 6/E 6th
Edition
https://testbankmall.com/product/test-bank-for-out-of-many-a-history-
of-the-american-people-brief-edition-volume-1-chapters-1-17-6-e-6th-
edition/
Test Bank for Criminology The Core, 4th Edition

https://testbankmall.com/product/test-bank-for-criminology-the-
core-4th-edition/

Test Bank for Intermediate Accounting, 17th Edition: Stice

https://testbankmall.com/product/test-bank-for-intermediate-
accounting-17th-edition-stice/

Test Bank for Sensation and Perception Second Edition

https://testbankmall.com/product/test-bank-for-sensation-and-
perception-second-edition/

Solution Manual for Probability Statistics and Random


Processes for Engineers 4th Edition by Stark

https://testbankmall.com/product/solution-manual-for-probability-
statistics-and-random-processes-for-engineers-4th-edition-by-stark/

Test Bank for Business Ethics Case Studies and Selected


Readings, 7th Edition

https://testbankmall.com/product/test-bank-for-business-ethics-case-
studies-and-selected-readings-7th-edition/
Test Bank for World Regions in Global Context: Peoples,
Places, and Environments 6th Edition

https://testbankmall.com/product/test-bank-for-world-regions-in-
global-context-peoples-places-and-environments-6th-edition/
Oracle 12c SQL, ISBN: 9781305251038
Ch. 1 2
9. What type of relationship can’t be stored in a database? Why? A many-to-many relationship
can’t be stored in a database because there would be no way to restructure or rejoin the data
correctly.

10. Identify at least three reasons an organization might analyze historical sales data stored in
its database. Answers will vary. To determine the necessary inventory levels to support sales
fluctuations, to project employee-scheduling requirements, to determine appropriate
marketing campaigns based on historic purchasing patterns, and so forth.

Multiple Choice
1. d
2. b
3. d
4. a
5. c
6. a
7. a
8. d
9. d
10. c
11. b
12. b
13. a
14. b
15. b
16. d
17. c
18. c
19. a
20. c

Hands-On Assignments
1. Which tables and fields would you access to determine which book titles have been
purchased by a customer and when the order shipped? CUSTOMERS: Customer#;
ORDERS: Order#, Shipdate, Customer#; ORDERITEMS: Order#, ISBN; BOOKS: ISBN,
Title

2. How would you determine which orders have not yet been shipped to the customer? Identify
all orders that don’t have an entry for the date shipped.

3. If management needed to determine which book category generated the most sales in April
2009, which tables and fields would they consult to derive this information? ORDERS:
Oracle 12c SQL, ISBN: 9781305251038
Ch. 1 3
Orderdate, Order#; ORDERITEMS: Order#, ISBN, Quantity, Paideach; BOOKS: ISBN,
Category

4. Explain how you would determine how much profit was generated from orders placed in
April 2009. Determine the amount of profit generated by each book on an order item
(Paideach-Cost), multiply the profit for each book by the quantity purchased, and then total
the amount of profit generated by all orders placed in April.

5. If a customer inquired about a book written in 2003 by an author named Thompson, which
access path (tables and fields) would you need to follow to find the list of books meeting the
customer’s request? AUTHOR: Lname, AuthorID; BOOKAUTHOR: AuthorID, ISBN;
BOOKS: ISBN, Pubdate.
6. A college needs to track placement test scores for all incoming students. Each student can
take a variety of tests, including English and math. Some students are required to take
placement tests because of previous coursework.

Students Tests

7. Every employee in a company is assigned to one department. Every department can contain
many employees.

Departments Employees

8. A movie megaplex needs to collect and analyze movie attendance data. The company
maintains 16 theaters in a single location. Each movie offered can be shown in one or more
of the available theaters and is typically scheduled for three to six showings in a day. The
movies are rotated through the theaters to ensure that each is shown in one of the stadium-
seating theaters at least once.

Movies Showings Theaters


Oracle 12c SQL, ISBN: 9781305251038
Ch. 1 4
9. An online retailer of coffee beans maintains a long list of unique coffee flavors. The company
purchases beans from a number of suppliers; however, each specific flavor of coffee is
purchased from only a single supplier. Many of the customers are repeat purchasers and
typically order at least five flavors of beans in each order.

Suppliers Products Order_items Orders Customers

10. Data for an information technology conference needs to be collected. The conference has a
variety of sessions scheduled over a two-day period. All attendees must register for the
sessions they plan to attend. Some speakers are presenting only one session, whereas others
are handling multiple sessions. Each session has only one speaker.

Speakers Sessions Registrations Attendees

Advanced Challenge
Results of the normalization process will vary, depending on the assumptions made by the
student.

Unnormalized:

first name, last name, billing address, quantity, retail price, shipping address, order date, ship
date

1NF:

CUSTOMERS: customer #, first name, last name, billing address

ORDERS: order #, shipping address, quantity, retail price, order date, ship date

2NF:
Oracle 12c SQL, ISBN: 9781305251038
Ch. 1 5
CUSTOMERS: customer #, first name, last name, billing address

ORDERS: order #, shipping address, order date, ship date

ORDERITEMS: order #, item#, quantity, retail price, ISBN

3NF:

CUSTOMERS: customer #, first name, last name, billing address

ORDERS: order #, shipping address, order date, ship date

ORDERITEMS: order #, item#, quantity, ISBN

BOOKS: ISBN, retail price

Case Study: City Jail


The appearance of the E-R model will vary depending on the notations or modeling software
students are using. An example is shown on the next page.

Additional entities and/or attributes: Answers will vary greatly. A Jails entity is an example of a
possible additional entity. Image items, such as a criminal photo and fingerprints, are examples
of additional attributes that might be required.
Oracle 12c SQL, ISBN: 9781305251038
Ch. 1 6
City Jail Database E-R
Model

Aliases Appeals
Alias_ID
Criminal_ID Appeal_ID
Alias Crime_ID
Filing_date
Crimes Hearing_date
Status
Crime_ID
Criminals Criminal_ID
Criminal_ID Classification
Last Date_charged Officers
First Status
Street Officer_ID
Hearing_date
City Last
Appeal_cut_date
State First
Zip Precinct
Phone Badge
V_status Phone
P_status Status
Crime_officers
Sentences
Crime_ID
Sentence_ID Officer_ID
Criminal_ID
Type
Prob_ID
Start_date Crime_charges
End_date
Violations Charge_ID
Crime_ID
Crime_code
Charge_status
Fine_amount
Prob_Officers Court_fee
Amount_paid
Prob_ID Pay_due_date
Last
First
Street
City
Crime_codes
State
Zip
Crime_code
Phone
Code_description
Email
Status
Random documents with unrelated
content Scribd suggests to you:
credit card donations. To donate, please visit:
www.gutenberg.org/donate.

Section 5. General Information About


Project Gutenberg™ electronic works
Professor Michael S. Hart was the originator of the Project
Gutenberg™ concept of a library of electronic works that could
be freely shared with anyone. For forty years, he produced and
distributed Project Gutenberg™ eBooks with only a loose
network of volunteer support.

Project Gutenberg™ eBooks are often created from several


printed editions, all of which are confirmed as not protected by
copyright in the U.S. unless a copyright notice is included. Thus,
we do not necessarily keep eBooks in compliance with any
particular paper edition.

Most people start at our website which has the main PG search
facility: www.gutenberg.org.

This website includes information about Project Gutenberg™,


including how to make donations to the Project Gutenberg
Literary Archive Foundation, how to help produce our new
eBooks, and how to subscribe to our email newsletter to hear
about new eBooks.
Welcome to our website – the perfect destination for book lovers and
knowledge seekers. We believe that every book holds a new world,
offering opportunities for learning, discovery, and personal growth.
That’s why we are dedicated to bringing you a diverse collection of
books, ranging from classic literature and specialized publications to
self-development guides and children's books.

More than just a book-buying platform, we strive to be a bridge


connecting you with timeless cultural and intellectual values. With an
elegant, user-friendly interface and a smart search system, you can
quickly find the books that best suit your interests. Additionally,
our special promotions and home delivery services help you save time
and fully enjoy the joy of reading.

Join us on a journey of knowledge exploration, passion nurturing, and


personal growth every day!

testbankmall.com

You might also like