Full file at

Similar documents
SQL: Concepts. Todd Bacastow IST 210: Organization of Data 2/17/ IST 210

SQL Fundamentals. Chapter 3. Class 03: SQL Fundamentals 1

Lab # 4. Data Definition Language (DDL)

Full file at

Information Systems Engineering. SQL Structured Query Language DDL Data Definition (sub)language

Database Programming with PL/SQL

Database Foundations. 6-3 Data Definition Language (DDL) Copyright 2015, Oracle and/or its affiliates. All rights reserved.

Lab # 2. Data Definition Language (DDL) Eng. Alaa O Shama

SQL language. Jaroslav Porubän, Miroslav Biňas, Milan Nosáľ (c)

COSC344 Database Theory and Applications. Lecture 5 SQL - Data Definition Language. COSC344 Lecture 5 1

Creating and Managing Tables Schedule: Timing Topic

Data Definition Language (DDL)

INTRODUCTION TO DATABASE

Chapter 4. Basic SQL. Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

SQL Functionality SQL. Creating Relation Schemas. Creating Relation Schemas

Course Outline and Objectives: Database Programming with SQL

EGCI 321: Database Systems. Dr. Tanasanee Phienthrakul

Introduction to Computer Science and Business

2 PL/SQL - fundamentals Variables and Constants Operators SQL in PL/SQL Control structures... 7

Chapter # 7 Introduction to Structured Query Language (SQL) Part I

HOW TO CREATE AND MAINTAIN DATABASES AND TABLES. By S. Sabraz Nawaz Senior Lecturer in MIT FMC, SEUSL

SQL Data Definition: Table Creation

Oracle Tables TECHGOEASY.COM

1. Using Bitvise SSH Secure Shell to login to CS Systems Note that if you do not have Bitvise ssh secure shell on your PC, you can download it from

Using DDL Statements to Create and Manage Tables. Copyright 2006, Oracle. All rights reserved.

D B M G. SQL language: basics. Managing tables. Creating a table Modifying table structure Deleting a table The data dictionary Data integrity

Introduction to Oracle

Chapter 7. Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management, Seventh Edition, Rob and Coronel

TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255.

Chapter 4. Basic SQL. SQL Data Definition and Data Types. Basic SQL. SQL language SQL. Terminology: CREATE statement

Using DDL Statements to Create and Manage Tables. Copyright 2004, Oracle. All rights reserved.

SQL: DDL. John Ortiz Cs.utsa.edu

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS

Architecture. Architecture. Introduction to Oracle 10g Express Edition. Help

Using DDL Statements to Create and Manage Tables. Copyright 2004, Oracle. All rights reserved.

SQL Data Definition and Data Manipulation Languages (DDL and DML)

MTAT Introduction to Databases

Oracle Database 10g: Introduction to SQL

Physical Design of Relational Databases

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 7 Introduction to Structured Query Language (SQL)

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Chapter 1 SQL and Data

ASSIGNMENT NO 2. Objectives: To understand and demonstrate DDL statements on various SQL objects

SQL DATA DEFINITION LANGUAGE

COSC 304 Introduction to Database Systems SQL DDL. Dr. Ramon Lawrence University of British Columbia Okanagan

Chapter-14 SQL COMMANDS

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering Fall 2011 ECOM 4113: Database System Lab Eng.

Full file at Chapter 2: An Introduction to SQL

Chapter 2: Basic Elements of Java

user specifies what is wanted, not how to find it

Database Systems CSE 303. Lecture 02

Database Systems CSE 303. Lecture 02

Debapriyo Majumdar DBMS Fall 2016 Indian Statistical Institute Kolkata

Data types String data types Numeric data types Date, time, and timestamp data types XML data type Large object data types ROWID data type

1) Introduction to SQL

Copyright 2016 Ramez Elmasri and Shamkant B. Navathe

Private Institute of Aga NETWORK DATABASE LECTURER NIYAZ M. SALIH

Oracle User Administration

CSC 453 Database Technologies. Tanu Malik DePaul University

Basant Group of Institution

Mahathma Gandhi University

Documentation Accessibility. Access to Oracle Support. Supported Browsers

SQL DATA DEFINITION LANGUAGE

Database Programming with SQL

Database Design and Implementation

SQL: Data De ni on. B0B36DBS, BD6B36DBS: Database Systems. h p:// Lecture 3

GridDB Advanced Edition SQL reference

COGS 121 HCI Programming Studio. Week 03 - Tech Lecture

SQL Simple Queries. Chapter 3.1 V3.01. Napier University

Lecture 07. Spring 2018 Borough of Manhattan Community College

How to define a relational schema for a data base?

Chapter 3 Introduction to relational databases and MySQL

Introduction to IBM DB2

Item: 1 (Ref:Cert-1Z )

5. Single-row function

Content: How to transform the relational model into a database schema DDL: create table students(studentnr int, name varchar);

Slides by: Ms. Shree Jaswal

Introduction to Information Systems

Chapter 2: Using Data

How To Drop All Tables In A Schema In Oracle 10g

SQL Data Definition Language: Create and Change the Database Ray Lockwood

BASIC SQL CHAPTER 4 (6/E) CHAPTER 8 (5/E)

Creating Tables, Defining Constraints. Rose-Hulman Institute of Technology Curt Clifton

Today Learning outcomes LO2

Tutorial 1 Database: Introductory Topics

Laboratory Handout Introduction to Oracle

CHAPTER. Introduction

2. Software Oracle 12c is installed on departmental server machines.

1Z Z0-146-Oracle Database 11g: Advanced PL/SQL Exam Summary Syllabus Questions

Introduction to SQL. IT 5101 Introduction to Database Systems. J.G. Zheng Fall 2011

SQL functions fit into two broad categories: Data definition language Data manipulation language

Chapter 4: Intermediate SQL

SQL: Data Definition Language. csc343, Introduction to Databases Diane Horton Fall 2017

normalization are being violated o Apply the rule of Third Normal Form to resolve a violation in the model

Textbook: Chapter 4. Chapter 5: Intermediate SQL. CS425 Fall 2016 Boris Glavic. Chapter 5: Intermediate SQL. View Definition.

Information Systems for Engineers Fall Data Definition with SQL

SQL DDL II. CS121: Relational Databases Fall 2017 Lecture 8

Debapriyo Majumdar DBMS Fall 2016 Indian Statistical Institute Kolkata

ORACLE DATABASE 12C INTRODUCTION

Chapter 4: Intermediate SQL

Transcription:

ch2 True/False Indicate whether the statement is true or false. 1. The SQL command to create a database table is an example of DML. 2. A user schema contains all database objects created by a user. 3. According to the Oracle Naming Standard, - (hyphen) is a legal character. 4. To create a table it is only necessary to specify column names. 5. The Oracle DBMS stores columns of all data types in the same amount of space. 6. The VARCHAR2 data type can store up to 4,000 characters. 7. Using the CHAR data type causes a column value to be padded to the maximum declared size of the column. 8. The CHAR data types stores up to 4,000 characters. 9. Given the column declaration name CHAR(5), if a user attempted to store the value Jonathan in the name column, only the first 5 characters would be stored. 10. The CHAR and VARCHAR2 data types store Unicode character data. 11. When declaring a NUMBER data type, scale is the total number of digits both to the left and to the right of the decimal point. 12. The following declaration represents a floating-point number: my_number NUMBER. 13. The following declaration represents an integer: my_int number(4, 2). 14. A fixed-point number contains a specific number of decimal places. 15. If a user only specifies the time when setting a value for a DATE column, the date portion will default to the current time. 16. A TIMESTAMP data type is the same as a DATE data type, except that time zone can be specified. 17. If a column has a YEAR TO MONTH INTERVAL data type, then the value +02-11 specifies a positive time interval of 2 years and 11 months. 18. Up to 6 GB of binary data can be stored in a BLOB column. 19. A primary key is defined using an integrity constraint.

20. A NOT NULL constraint is an example of a table constraint. 21. If the column S_ID is the primary key of the STUDENT table, the constraint name would be pk_student_s_id according to the constraint naming convention. 22. A composite key is created using a value constraint. 23. To check that the value entered into a CHAR column is either M or F, you would use a check condition constraint. 24. To log in to a database using SQL*Plus you only need to provide user name and password. 25. An Oracle error consists of a 3 letter prefix and a 5 digit code. 26. When you exit from a SQL*Plus session, the connection with the database is automatically closed. 27. To view the column names and data types of the LOCATION table you would type DESCRIBE LOCATION; at the SQL*Plus prompt. 28. You can always rename a table. 29. You can change a column data type from VARCHAR2 to NUMBER. 30. It is possible to temporarily disable constraints in an Oracle database. Multiple Choice Identify the choice that best completes the statement or answers the question. 31. Which of the following is not part of a DDL command? a. create table... c. create constraint... b. drop table... d. select table_name from... 32. Which of the following is not required when creating a table? a. table size c. column names b. table name d. column data types 33. Which of the following is a legal character in the Oracle Naming Standard? a. % c. # b. ^ d. * 34. Which of the following is not a legal table name according to the Oracle Naming Standard? a. #COURSE_ID c. COURSEID b. COURSE$ID d. COURSE_ID 35. Which of the following data types is used to store variable length ASCII character data? a. CHAR c. VARCHAR2 b. NCHAR d. NVARCHAR2 36. Which of the following declares a column named name that always contains exactly 30 characters? a. VARCHAR2(30) name c. name VARCHAR2(30) b. CHAR(30) name d. name CHAR(30)

37. Which of the following declarations would be most appropriate for storing a dollar value up to $1000? a. price NUMBER(5,2) c. price NUMBER(2) b. price NUMBER(5) d. price NUMBER 38. What is the default format for a DATE value? a. MM/DD/YY c. MM/DD/YYYY b. DD-MON-YY d. MON-DD-YYYY 39. If a user enters only a time into a DATE column, what will the date portion be set to? a. January 1, 1970 c. first day of the current month b. first day of the current year d. current date 40. In an INTERVAL YEAR TO MONTH data type, which of the following indicates a positive time interval of 2 years and 11 months? a. 2-11 c. +02-11 b. +2-11 d. 11-02 41. Which of the following LOB data types does not store the entire large object in the database? a. BLOB c. CLOB b. BFILE d. NCLOB 42. Which of the following is not created using an integrity constraint? a. foreign key c. composite key b. primary key d. surrogate key 43. Which of the following is not required to log in to an Oracle database using SQL*Plus? a. password c. host string b. database server ip d. user name 44. Which of the following pieces of information is not displayed by SQL*Plus when an error occurs? a. error line number c. error code b. error location d. suggested correction 45. Which of the following pieces of information about a table is not displayed when using the DESCRIBE command? a. column name c. not null settings b. column data type d. table constraints 46. Which of the following data dictionary views can only be seen by users with special privileges? a. USER c. DBA b. ALL d. SCHEMA 47. When selecting the table_name column from the all_tables view which tables are displayed? a. all tables in database b. all tables in user s schema c. all tables user has permission to manipulate d. all newly created tables 48. Which command would be used to delete table x and all foreign key constraints to x? a. delete x c. drop x b. delete x cascade constraints d. drop x cascade constraints 49. Which of the following is not automatically transferred to a new table name upon renaming a table?

a. indexes c. views b. constraints d. privileges 50. Which of the following sql commands adds a new VARCHAR2 column of length 20 named new_column to table test? a. ALTER TABLE test ADD (new_column VARCHAR2(20)) b. ADD column new_column VARCHAR2(20) to TABLE test c. ADD to TABLE test (new_column VARCHAR2(20)) d. ALTER TABLE test (new_column VARCHAR2(20)) 51. Which of the following is true when decreasing the maximum size of a CHAR column? a. it is an unrestricted action b. it is only permitted if all values are NULL c. all values in the column will be truncated to the new size d. all values larger than the new size will be automatically set to NULL 52. Which of the following is a table constraint? a. not null constraint c. unique constraint b. check condition d. default constraint 53. If you need to store a jpeg image in the database, which column declaration would you use? a. my_image BLOB c. my_image LOB b. my_image CLOB d. my_image BFILE 54. Which of the following column data type changes is permitted? a. DATE to CHAR c. CHAR to NUMBER b. VARCHAR2 to CHAR d. NUMBER to DATE 55. Which command is used to disable the constraint named faculty_loc_id_fk in the faculty table? a. MODIFY TABLE CONSTRAINT DISABLE faculty_loc_id_fk; b. ALTER TABLE faculty DISABLE faculty_loc_id_fk; c. MODIFY TABLE faculty DISABLE faculty_loc_id_fk; d. ALTER TABLE faculty DISABLE CONSTRAINT faculty_loc_id_fk; 56. Almost all relational database vendors support the ANSI standard. a. SQL-88 c. SQL-93 b. SQL-92 d. SQL-99 57. commands are used to add new database objects. a. DML c. DCL b. DDL d. XML 58. SQL command words are also known as. a. Java commands c. code words b. terms d. reserved words 59. The Oracle Naming Standard states that objects must be from 1 to characters long. a. 20 c. 40

b. 30 d. unlimited 60. The data type stores variable-length character data. a. CHAR c. VARCHAR2 b. VARCHAR d. STRING2 61. The CHAR data type stores fixed-length character data up to a maximum size of characters. a. 2,000 c. 10,000 b. 4,000 d. unlimited 62. Oracle10g stores character data in VARCHAR2 and CHAR columns using encoding. a. Unicode c. EBCDIC b. ASCII d. Java 63. You use the data type for any column that stores numerical data upon which users may perform arithmetic calculations. a. NUMBER c. VAR b. NUMERIC d. FLOAT 64. A(n) number would be best to store a currency value. a. int c. floating-point b. char d. fixed-point 65. A is a character LOB, storing up to 4 GB of character data in the database. a. BFILE c. CLOB b. BLOB d. CHAR 66. constraints define specific data values or data ranges that must be inserted into columns and whether values must be unique or not NULL. a. Value c. Redundancy b. Integrity d. Range 67. The constraint specifies whether the user must enter a column for a specific record, or whether the value can be NULL (indeterminate or unknown). a. INDEF c. NULL b. INPUT d. NOT NULL 68. Each SQL*Plus command is terminated with a(n). a. period c. colon b. semicolon d. exclamation mark 69. Deleting columns from a table is a(n) action. a. restricted c. illegal b. unrestricted d. privileged 70. The TABLE command is used to modify an existing column s data declaration. a. CHANGE c. MODIFY b. RESET d. ALTER Completion Complete each statement. 71. commands are used to insert, update, delete, and view data.

72. The data objects within a user schema are called database objects or. 73. are restrictions on the data values that a column can store. 74. A(n) specifies the kind of data that the column stores. 75. The VARCHAR2 data type stores variable-length character data up to a maximum of characters. 76. Fixed-length character data is stored in the data type. 77. NVARCHAR2 and NCHAR store character data with coding. 78. is the total number of digits both to the left and to the right of the decimal point. 79. The specifies the number of digits on the right side of the decimal point. 80. A(n) is a whole number with no digits on the right side of the decimal point. 81. A(n) number contains a variable number of decimal places. 82. A(n) column stores binary data of up to 4 GB in the database. 83. A(n) constraint defines a primary or foreign key. 84. A(n) constraint restricts the data value with respect to all other values in the table. 85. A(n) constraint limits the value that can be placed in a specific column, irrespective of values that exist in other table rows. 86. A(n) enables you to specify that a column value must be a specific value or fall within a range of values. 87. A(n) constraint is a table constraint that specifies that a column must have a unique value for every table row. 88. If an Oracle error is generated by the DBMS the error code will begin with. 89. To view a list of all tables in your own schema, use the command select table_name from. 90. Adding a new column to a database table is a(n) action. 91. Adding a check condition constraint to a table is a(n) action. 92. To delete a table from the database, use the command.

93. One way to exit SQL*Plus is to type at the SQL prompt. 94. The category of data dictionary views shows both the objects in the current user s schema and the objects that the user has privileges to manipulate. 95. _ is a Web-based resource that Oracle Corporation provides free of charge; it is useful for looking up error codes. Essay 96. Oracle provides a means to disable constraints and then enable them again. Give an example of a situation in which this feature would be useful. 97. You are trying to create a table using SQL*Plus but keep receiving an Oracle error message. You cannot understand the description of the error provided by the interpreter. You have also looked-up the error code at otn.oracle.com, but you still cannot fix your sql. Describe another means you could use to find the problem in your code. 98. Explain why it is a good idea to use Notepad or another editor to modify your sql commands rather than trying to edit them directly in the SQL*Plus window. Give at least two advantages of using the editor. 99. Define the two basic categories of SQL commands. 100. Explain the Oracle naming standard. Provide example of legal and illegal names.

ch2 Answer Section TRUE/FALSE 1. ANS: F PTS: 1 REF: 42 2. ANS: T PTS: 1 REF: 43 3. ANS: F PTS: 1 REF: 44 4. ANS: F PTS: 1 REF: 44 5. ANS: F PTS: 1 REF: 44 6. ANS: T PTS: 1 REF: 45 7. ANS: T PTS: 1 REF: 46 8. ANS: F PTS: 1 REF: 45 9. ANS: F PTS: 1 REF: 46 10. ANS: F PTS: 1 REF: 46 11. ANS: F PTS: 1 REF: 47 12. ANS: T PTS: 1 REF: 48 13. ANS: F PTS: 1 REF: 47 14. ANS: T PTS: 1 REF: 48 15. ANS: F PTS: 1 REF: 49 16. ANS: F PTS: 1 REF: 49 17. ANS: T PTS: 1 REF: 50 18. ANS: F PTS: 1 REF: 51 19. ANS: T PTS: 1 REF: 52 20. ANS: F PTS: 1 REF: 52 21. ANS: F PTS: 1 REF: 53 22. ANS: F PTS: 1 REF: 55 23. ANS: T PTS: 1 REF: 56 24. ANS: F PTS: 1 REF: 58 25. ANS: T PTS: 1 REF: 62 26. ANS: T PTS: 1 REF: 64 27. ANS: T PTS: 1 REF: 66 28. ANS: T PTS: 1 REF: 72 29. ANS: F PTS: 1 REF: 73 30. ANS: T PTS: 1 REF: 77-78 MULTIPLE CHOICE 31. ANS: D PTS: 1 REF: 42 32. ANS: A PTS: 1 REF: 44 33. ANS: C PTS: 1 REF: 44 34. ANS: A PTS: 1 REF: 44 35. ANS: C PTS: 1 REF: 45-46 36. ANS: D PTS: 1 REF: 46 37. ANS: A PTS: 1 REF: 48

38. ANS: B PTS: 1 REF: 49 39. ANS: C PTS: 1 REF: 49 40. ANS: C PTS: 1 REF: 50 41. ANS: B PTS: 1 REF: 51 42. ANS: D PTS: 1 REF: 53 43. ANS: B PTS: 1 REF: 59 44. ANS: D PTS: 1 REF: 62 45. ANS: D PTS: 1 REF: 66 46. ANS: C PTS: 1 REF: 67 47. ANS: C PTS: 1 REF: 68 48. ANS: D PTS: 1 REF: 73 49. ANS: C PTS: 1 REF: 74 50. ANS: A PTS: 1 REF: 75 51. ANS: B PTS: 1 REF: 73 52. ANS: C PTS: 1 REF: 52 53. ANS: A PTS: 1 REF: 52 54. ANS: B PTS: 1 REF: 75 55. ANS: D PTS: 1 REF: 78 56. ANS: B PTS: 1 REF: 42 57. ANS: B PTS: 1 REF: 42 58. ANS: D PTS: 1 REF: 42 59. ANS: C PTS: 1 REF: 44 60. ANS: C PTS: 1 REF: 45 61. ANS: A PTS: 1 REF: 46 62. ANS: B PTS: 1 REF: 46 63. ANS: A PTS: 1 REF: 47 64. ANS: D PTS: 1 REF: 48 65. ANS: C PTS: 1 REF: 51 66. ANS: A PTS: 1 REF: 52 67. ANS: D PTS: 1 REF: 56 68. ANS: B PTS: 1 REF: 59 69. ANS: B PTS: 1 REF: 72 70. ANS: D PTS: 1 REF: 75 COMPLETION 71. ANS: DML Data Manipulation Language PTS: 1 REF: 42 72. ANS: schema objects PTS: 1 REF: 43 73. ANS: Constraints PTS: 1 REF: 43-44

74. ANS: data type PTS: 1 REF: 44 75. ANS: 4,000 4000 PTS: 1 REF: 45 76. ANS: CHAR char Char PTS: 1 REF: 45 77. ANS: Unicode unicode PTS: 1 REF: 46 78. ANS: Precision PTS: 1 REF: 47 79. ANS: scale PTS: 1 REF: 47 80. ANS: integer PTS: 1 REF: 47 81. ANS: floating-point PTS: 1 REF: 48 82. ANS: BLOB PTS: 1 REF: 51 83. ANS: integrity PTS: 1 REF: 53 84. ANS: table PTS: 1 REF: 52 85. ANS: column PTS: 1 REF: 52 86. ANS: check condition PTS: 1 REF: 56 87. ANS: unique PTS: 1 REF: 58

88. ANS: ORA PTS: 1 REF: 62 89. ANS: user_tables PTS: 1 REF: 67 90. ANS: unrestricted PTS: 1 REF: 72 91. ANS: restricted PTS: 1 REF: 72 92. ANS: DROP TABLE PTS: 1 REF: 72 93. ANS: exit PTS: 1 REF: 64 94. ANS: ALL PTS: 1 REF: 67 95. ANS: OTN Oracle Technology Network PTS: 1 REF: 63 ESSAY 96. ANS: Sometimes while you are developing new database applications, it is useful to disable constraints, then re-enable the constraints when the application is finished. For example, suppose one programming team member is working on an application to add records to the FACULTY table, while another team member is performing maintenance operations on the LOCATION table. (Recall that the LOC_ID column in the FACULTY table references the LOC_ID column in the LOCATION table as a foreign key.) If the team member working with the LOCATION table deletes all of the table rows, the team member working with the FACULTY table cannot insert any new rows, because there are no LOC_ID primary key values to reference. PTS: 1 REF: 77-78 97. ANS:

When an error occurs that you cannot locate, a last resort debugging technique is to create the table multiple times and add one additional column declaration each time, until you find the declaration causing the error. First paste your nonworking command in a Notepad file and modify it so that it creates the table with only the first column declaration. Copy the modified command, and paste it into SQL*Plus. If SQL*Plus successfully creates the table with the first column, you now know that the error was not in the first column declaration. Delete the table using the DROP TABLE command, which has the following syntax: DROP TABLE tablename;. (You will learn more about the DROP TABLE command later in this chapter.) Then, modify the command in Notepad to create the table using only the first and second column declarations. If this works, you now know that the problem was not in either the first or second column declaration. Drop the table again, and modify the command to create the table using only the first, second, and third column declarations. Continue this process of adding one more column declaration to the CREATE command until you locate the column declaration that is causing the error. PTS: 1 REF: 64 98. ANS: Many SQL commands are long and complex, and it is easy to make typing errors. A good approach for entering and editing SQL*Plus commands is to type commands into a text editor such as Notepad, then copy your commands, paste the copied commands into SQL*Plus, and execute the commands. If the command has an error, you can switch back to the text editor, edit the command, copy and paste the edited text back into SQL*Plus, and then re-execute the command. When you are creating database tables, it is a good idea to save the text of all of your CREATE TABLE commands in a single Notepad text file so you have a record of the original code. Saving all the commands in one file creates a script, which is a text file that contains several related SQL commands.you can run the script later to re-create the tables if you need to make changes.you can save multiple CREATE TABLE commands in a text file. Just make sure that they are in the proper order so that foreign key references are made after their parent tables are created. PTS: 1 REF: 60-61 99. ANS: Data definition language (DDL) commands Used to create new database objects (such as user accounts and tables) and modify or delete existing objects.when you execute a DDL command, the command immediately changes the database, so you do not need to save the change explicitly. Data manipulation language (DML) commands Used to insert, update, delete, and view database data.when you execute a DML command, you must explicitly save the command to make the new data values visible to other database users. PTS: 1 REF: 42 100. ANS: Table names and column names must follow the Oracle naming standard, which is a series of rules that Oracle Corporation has established for naming all database objects. This Oracle naming standard states that objects must be from one to 30 characters long, can contain letters, numbers, and the special symbols ($),( _ ), and ( # ), and must begin with a character. Examples of legal Oracle10g database object names are STUDENT_TABLE, PRICE$, or COURSE_ID#. Examples of illegal Oracle10g database object names are STUDENT TABLE (which contains a blank space), STUDENT-TABLE (which contains a hyphen), or #COURSE_ID (which does not begin with a character). PTS: 1 REF: 44