Preview

Final Exam Review Questions

Powerful Essays
Open Document
Open Document
1917 Words
Grammar
Grammar
Plagiarism
Plagiarism
Writing
Writing
Score
Score
Final Exam Review Questions
Fundamentals of Database Systems
Final Exam Review Questions
Dr. Fahmi Abboushi

True/False
Indicate whether the statement is true or false.

___T__ 1. A database language must enable the user to create database and table structures to perform basic data management chores.

___T 2. A database language must enable the user to perform complex queries designed to transform the raw data into useful information.

___F 3. SQL is considered hard to learn; its command set has a vocabulary of more than 300 words.

___F_ 4. All SQL commands must be issued on a single line.

___T_ 5. To restore the values of a table, provided you have not used the COMMIT command, you must use the ROLLBACK command.

___T_ 6. SQL allows the use
…show more content…
Distributed processing does not require a distributed database, and a distributed database does not require distributed processing.

__T_ 19. In order to manage distributed data, copies or parts of the database processing functions must be distributed to all data storage sites.

__T__ 20. A fully distributed DBMS must perform all the functions of a centralized DBMS, and it must handle all necessary functions imposed by the distribution of data and processing.

__F__ 21. Distributed database systems do not require complex mechanisms to manage transactions and ensure the database's consistency and integrity.

__T_ 22. A remote request allows the user to access data to be processed by a single remote database processor. The SQL statement can reference data at one remote site.

__T_ 23. A remote transaction, composed of several requests, may access data at only one single site.

__F__ 24. Greater ease in managing the data environment is one of the advantages of DDBMS.

__T_ 25. The TP is the software component found in each computer that requests data.

Multiple Choice
Identify the choice that best completes the statement or answers the question.

___A_ 1. The SQL command that lets you insert data into a table, one row at a time, is
…show more content…
|SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE |
| |FROM PRODUCT |
| |WHERE V_CODE = 21344 |
| |OR V_CODE > 24288 |
|d. |SELECT P_DESCRIPT, P_INDATE, P_PRICE, V_CODE |
| |FROM PRODUCT |
| |WHERE V_CODE = 21344 |
| |OR V_CODE = 24288 |

__A__ 10. SQL allows the use of a special operator in conjunction with the WHERE clause. The special operator used to define a range limit is ____.
|a. |BETWEEN

You May Also Find These Documents Helpful

  • Powerful Essays

    Pt2520 Unit 6

    • 1447 Words
    • 6 Pages

    Data redundancy in a database occurs when same data is stored in different tables unnecessarily. A modification to a single piece of data requires change for all the copies. Use of flat file database designs and spreadsheets can lead to data redundancy.…

    • 1447 Words
    • 6 Pages
    Powerful Essays
  • Satisfactory Essays

    Unit 6 True

    • 287 Words
    • 1 Page

    SQL is the programming language used to manipulate data and data objects in a relational database management system. TRUE…

    • 287 Words
    • 1 Page
    Satisfactory Essays
  • Good Essays

    One benefit of a relational database management system is that it contains a built-in query language, which lets you obtain immediate answers to the questions you ask about your data. _________________________…

    • 585 Words
    • 3 Pages
    Good Essays
  • Good Essays

    Ibm Db2 vs Oracle

    • 1231 Words
    • 5 Pages

    A side by side analysis of the hardware and software requirements for both DBMS 's shows some remarkable similarities as well as some differences. Similarities in baseline processors across the various hardware platforms but different amounts of disk space and both applications desiring as much memory as possible to improve performance (Chigrik, 2003).…

    • 1231 Words
    • 5 Pages
    Good Essays
  • Better Essays

    First there is a performance gain by having the database server focus only on database storage and retrieval. Specific hardware and topologies (such as RAID) are used for database storage and access that are different from an “application server” or middle tier of business objects and logic. In addition with powerful client machines it made sense to push UI processing down to the client.…

    • 1236 Words
    • 5 Pages
    Better Essays
  • Powerful Essays

    Query Optimization Paper

    • 1520 Words
    • 7 Pages

    [3] Bernstein, P.A., Goodman, N., Wong, E., Reeve, C.L, Rothnie, J. Query Processing in a System for Distributed Databases (SDD-1), ACM TODS 6:4 (Dec 1981).…

    • 1520 Words
    • 7 Pages
    Powerful Essays
  • Good Essays

    Database Sql

    • 755 Words
    • 4 Pages

    [Note: The words marked in dark in this text work as keywords in SQL language. For example “select”, “from” and “where” in the above paragraph are shown in bold font to indicate that they are keywords]…

    • 755 Words
    • 4 Pages
    Good Essays
  • Powerful Essays

    Dbms Lab 1

    • 1881 Words
    • 8 Pages

    AIM: Study data types in SQL and usage of various Data Definition Language commands. PROCEDURE: What is SQL? SQL is structured Query Language which is a computer language for storing, manipulating and retrieving data stored in relational database. SQL is the standard language for Relation Database System. All relational database management systems like MySQL, MS Access, Oracle, Sybase, Informix, postgres and SQL Server uses SQL as standard database language. Also they are using different dialects, Such as: • MS SQL Server using T-SQL, • Oracle using PL/SQL, • MS Access version of SQL is called JET SQL (native format )etc Why SQL? • Allow users to access data in relational database management systems. • Allow users to describe the data. • Allow users to define the data in database and manipulate that data. • Allow to embed within other languages using SQL modules, libraries & pre-compilers. • Allow users to create and drop databases and tables. • Allow users to create view, stored procedure, functions in a database. • Allow users to set permissions on tables, procedures, and views History: • 1970 -- Dr. E.F. "Ted" of IBM is known as the father of relational databases. He described a relational model for databases. • 1974 -- Structured Query Language appeared. • 1978 -- IBM worked to develop Codd's ideas and released a product named System/R. • 1986 -- IBM developed the first prototype of relational database and standardized by ANSI. The first relational database was released by Relational Software and its later becoming Oracle.…

    • 1881 Words
    • 8 Pages
    Powerful Essays
  • Good Essays

    Writing Sql Statement

    • 478 Words
    • 2 Pages

    1. The INSERT SQL statement populate table with data. The general form of INSERT: INSERT INTO table_name(column1, column2, column3, ...) values (value1, value2, value3, ...); 2. Type the following statement to insert the first record in friends table: INSERT INTO friends(ID, Fname, Phone) values (1, “Tan Mei Mei”, “91234123”);…

    • 478 Words
    • 2 Pages
    Good Essays
  • Good Essays

    SQL Server Notes

    • 3362 Words
    • 14 Pages

    Enterprise-Level Database Features: The SQL Server 2000 relational database engine supports the features required to support demanding data processing environments. The database engine protects data integrity while minimizing the overhead of managing thousands of users concurrently modifying the database. SQL Server 2000 distributed queries allow you to reference data from multiple sources as if it were a part of a SQL Server 2000 database, while at the same time, the distributed transaction support protects the integrity of any updates of the distributed data. Replication allows you to also maintain multiple copies of data, while ensuring that the separate copies remain synchronized.…

    • 3362 Words
    • 14 Pages
    Good Essays
  • Powerful Essays

    integrity is much easier. Moreover, the functions in the DBMS can be used to enforce the integrity rules with minimum programming in the application programs.…

    • 6581 Words
    • 27 Pages
    Powerful Essays
  • Powerful Essays

    In today’s world of universal dependence on information systems, all sorts of people need access to companies’ databases. In addition to a company’s own employees, these include the company’s customers, potential customers, suppliers, and vendors of all types. It is possible for a company to have all of its databases concentrated at one mainframe computer site with worldwide access to this site provided by telecommunications networks, including the Internet. Although the management of such a centralized system and its databases can be controlled in a well-contained manner and this can be advantageous, it poses some problems as well. For example, if the single site goes down, then everyone is blocked from accessing the databases until the site comes back up again. Also the communications costs from the many far-flung PCs and terminals to the central site can be expensive. One solution to such problems, and an alternative design to the centralized database concept, is known as distributed database.…

    • 1554 Words
    • 7 Pages
    Powerful Essays
  • Powerful Essays

    Database Managment System

    • 4309 Words
    • 18 Pages

    Abstract: The dream of computing power as readily available as the electricity in a wall socket is coming closer to reality with the arrival of grid and cloud computing. At the same time, databases grow to sizes beyond what can be efficiently managed by single server systems. There is a need for efficient distributed database management systems (DBMSs). Current distributed DBMSs are not built to scale to more than tens or hundreds of sites (i.e., nodes or computers). Users of grid and cloud computing expect not only almost infinite scalability, i.e., at least to thousands of sites, but also that the scale is adapted automatically to meet the demand, whether it increases or decreases. This is a challenge to current distributed DBMSs. The purpose of this paper is to present an introduction to Distributed Databases which are becoming very popular now a days. Today’s business environment has an increasing need for distributed database and Client/server applications as the desire for reliable, scalable and accessible information is Steadily rising. Distributed database systems provide an improvement on communication and data processing due to its data distribution throughout different network sites.…

    • 4309 Words
    • 18 Pages
    Powerful Essays
  • Good Essays

    Queries

    • 2557 Words
    • 11 Pages

    * most common variety of query is the select query, where the query is used to select certain information from the database according to criteria you specify.…

    • 2557 Words
    • 11 Pages
    Good Essays
  • Powerful Essays

    database

    • 1930 Words
    • 21 Pages

    Transforming Raw Data into Information Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel 5 1 Transforming Raw Data into Information (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel 6 1 Transforming Raw Data into Information (continued) Database Systems: Design, Implementation, & Management, 7th Edition, Rob & Coronel 7 1 Transforming Raw Data into Information (continued)…

    • 1930 Words
    • 21 Pages
    Powerful Essays