Database Systems: Design, Implementation, & Management
11th Edition
ISBN: 9781285196145
Author: Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Publisher: Cengage Learning
expand_more
expand_more
format_list_bulleted
Concept explainers
Expert Solution & Answer
Chapter 8, Problem 20RQ
Explanation of Solution
Sequence:
- A sequence is user defined schema that generates the numeric values.
- The generation of unique numeric values by a special type of object either in ascending or descending order is called sequence.
- It is frequently used in
databases as many applications require unique value in a row. - Its functionality is same as the Autonumber data type in MS access.
- For example, both the sequence and Autonumber data type generate ascending or descending values.
There are some slight difference which occurs between sequence and the Autonumber data type. Some of the differences are listed below:
- In MS Access, Autonumber is just a data type, whereas in oracle, sequence is completely an independent object.
- In MS Access, only one Autonumber is given for a table, whereas in Oracle, many sequences can be given to any number of tables...
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
In Oracle database, If ORDER_DATE field exist in any of our tables, then we can
include the following in our WHERE clause:
I:
to_char(order_date, 'Mon yyyy')='Feb 2001'
to_char(order_date,
II:
'mon yyyy')='FEB 2001'
I & II: are correct
I & II: are not correct
1
I & II: are not correct
I & II: are correct
Oll
Question 10
Format masks affect how Oracle stores the data.
True
False
3)
Create a SQL statement/s to Add/insert the following records in the CLIENTS table:
CLIENTS
CID
CName
Gender
Address
Contact
CType
1521
Ahmed Said
Male
SLL
92214561
Old
1522
Salma Mohammed
Female
MCT
92384792
New
1523
Faiza Ahmed
Female
SLL
97451382
Old
1524
Noaman Said
Male
NZW
New
Chapter 8 Solutions
Database Systems: Design, Implementation, & Management
Ch. 8 - What is a cross join? Give an example of its...Ch. 8 - What three join types are included in the outer...Ch. 8 - Using tables named T1 and T2, write a query...Ch. 8 - Prob. 4RQCh. 8 - Prob. 5RQCh. 8 - Prob. 6RQCh. 8 - Prob. 7RQCh. 8 - What does it mean to say that SQL operators are...Ch. 8 - Prob. 9RQCh. 8 - Prob. 10RQ
Ch. 8 - Prob. 11RQCh. 8 - Prob. 12RQCh. 8 - Prob. 13RQCh. 8 - Given the employee information in Question 11,...Ch. 8 - Prob. 15RQCh. 8 - Prob. 16RQCh. 8 - Prob. 17RQCh. 8 - Prob. 18RQCh. 8 - What string function should you use to list the...Ch. 8 - Prob. 20RQCh. 8 - Prob. 21RQCh. 8 - Prob. 22RQCh. 8 - Prob. 23RQCh. 8 - Prob. 24RQCh. 8 - Prob. 1PCh. 8 - Insert the data into the tables you created in...Ch. 8 - Prob. 3PCh. 8 - Prob. 4PCh. 8 - Prob. 5PCh. 8 - Prob. 6PCh. 8 - Prob. 7PCh. 8 - Prob. 8PCh. 8 - Prob. 9PCh. 8 - Modify the CUSTOMER table to include two new...Ch. 8 - Prob. 11PCh. 8 - Prob. 12PCh. 8 - Prob. 13PCh. 8 - Prob. 14PCh. 8 - Prob. 15PCh. 8 - Prob. 16PCh. 8 - Write a trigger to update the customer balance...Ch. 8 - Write a procedure to delete an invoice, giving the...Ch. 8 - Prob. 19PCh. 8 - Prob. 20PCh. 8 - Prob. 21PCh. 8 - Prob. 22PCh. 8 - Prob. 23PCh. 8 - Prob. 24PCh. 8 - Prob. 25PCh. 8 - Prob. 26PCh. 8 - Prob. 27PCh. 8 - Create a trigger named trg_line_total to write the...Ch. 8 - Create a trigger named trg_line_prod that...Ch. 8 - Create a stored procedure named prc_inv_amounts to...Ch. 8 - Create a procedure named prc_cus_balance_update...Ch. 8 - Modify the MODEL table to add the attribute and...Ch. 8 - Prob. 33PCh. 8 - Modify the CHARTER table to add the attributes...Ch. 8 - Write the sequence of commands required to update...Ch. 8 - Write the sequence of commands required to update...Ch. 8 - Write the command required to update the...Ch. 8 - Write the command required to update the...Ch. 8 - Write the command required to update the...Ch. 8 - Prob. 40PCh. 8 - Create a trigger named trg_char_hours that...Ch. 8 - Create a trigger named trg_pic_hours that...Ch. 8 - Create a trigger named trg_cust_balance that...Ch. 8 - Alter the DETAILRENTAL table to include a derived...Ch. 8 - Alter the VIDEO table to include an attribute...Ch. 8 - Update the VID_STATUS attribute of the VIDEO table...Ch. 8 - Alter the PRICE table to include an attribute...Ch. 8 - Prob. 48CCh. 8 - Prob. 51C
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Answer with proper explanation. Create a PYTHON script (insert-100.py) that generates a SQL file (insert-100.sql) that holds the first 100 inserts to the main data table.arrow_forwardWhat is the purpose of the Analytic Functions in Oracle with an examples of their usage.arrow_forward31-Create a SQL statement to Display the number of clients for each CType with having less than 2 clients in the CLIENTS table.arrow_forward
- using postgresql: Write a trigger that will be activated when a new customer is added to the Customers table and that verifies that the ID of the new record does not yet exist in the table. If it does, the request shall be rejected. Show what happens when a record with an existing ID is attempted to be added to the Customer table to verify that your trigger is working properly. Customers table columns: id, first name, last name, emailarrow_forwardNot all versions of this database include referential integrity constraints for all foreign keys. Use whatever commands are available for the RDBMS you are using, investigate if any referential integrity constraints are missing. Write any missing constraints and, if possible, add them to the associated table definitions.arrow_forwardA forcign key in a relational database table is a(n): A Set of attribute values in a table. B Combination of attributes in a table. 'C Altribute in one table that is an attribute in another table. D Column ofa table.arrow_forward
- in sql DCL, which is the acronym for Data Control Language, allows: Select one: a. A Database Administrator the ability to grant privileges to users. b. The ALTER command to be used. c. The TRUNCATE command to be used. d. The CONROL TRANSACTION statement can be used.arrow_forwardUse SQL and run on Oracle: 1.Use exists operator and find all clients that have not viewed property for rent number ‘PA14’. 2.Insert these three records into the staff table: (‘SG15’, ‘Yusuf’, ‘Kareem’, ‘Assistant’, ‘M’, ‘1970-06-20’, 9300, ‘B003’) (‘SG16’, ‘Aishah’, ‘Ahmad’, ‘Manager’, null, null, null, ‘B003’) (‘SG17’, ‘Ibrahim’, ‘Zeki’, ‘B003’) Use SQL and run on Oracle: Increase the rent for all flats in Glasgow by 15%. Tina Murphy had just sold all her properties to Carol Farrel. Update the correct records to reflect the transfer of ownership from Tina to Carol. Delete the branch office in ‘163 Main St’ from the Database record.arrow_forward25-Create a SQL statement/s to Add/insert the following records in the CLIENTS table: CLIENTS CID CName Gender Address Contact CType 1521 Ahmed Said Male SLL 92214561 Old 1522 Salma Mohammed Female MCT 92384792 New 1523 Faiza Ahmed Female SLL 97451382 Old 1524 Noaman Said Male NZW Newarrow_forward
- 29-Create a SQL statement to Display the unique GENDER in the CLIENTS table. Sort the GENDER in descending order.arrow_forwardUsing the film database you have, answer the following queries in your schema thenwrite them down in this paper. Question two:a) Convert the following for-cursor into: open, fetch, close one:DECLARECursor c1 is select table_name from user_tables;BEGINFOR tables IN c1 LOOPDBMS_OUT.PUT_LINE(tables.table_name);END LOOP;END; b) Create a trigger so that when user tries to update category table, new valuewon't take effect and old data will remain in the database. c) Create a function to return if a particular film has more than 10 actors in it ornot.arrow_forwardUsing the film database you have, answer the following queries in your schema thenwrite them down in this paper. Question two:a) Convert the following for-cursor into: open, fetch, close one:DECLARECursor c1 is select table_name from user_tables;BEGINFOR tables IN c1 LOOPDBMS_OUT.PUT_LINE(tables.table_name);END LOOP;END; b) Create a trigger so that when user tries to update category table, new valuewon't take effect and old data will remain in the database. c) Create a function to return if a particular film has more than 10 actors in it ornot.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781285196145Author:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos CoronelPublisher:Cengage Learning
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781285196145
Author:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Publisher:Cengage Learning
SQL Basics for Beginners | Learn SQL | SQL Tutorial for Beginners | Edureka; Author: edureka;https://www.youtube.com/watch?v=zbMHLJ0dY4w;License: Standard YouTube License, CC-BY