Download Lab Final Study Guide

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Asynchronous I/O wikipedia , lookup

Information privacy law wikipedia , lookup

Database wikipedia , lookup

Operational transformation wikipedia , lookup

SQL wikipedia , lookup

Open data in the United Kingdom wikipedia , lookup

3D optical data storage wikipedia , lookup

Clusterpoint wikipedia , lookup

Business intelligence wikipedia , lookup

Rainbow table wikipedia , lookup

Entity–attribute–value model wikipedia , lookup

PL/SQL wikipedia , lookup

Data vault modeling wikipedia , lookup

Relational model wikipedia , lookup

Extensible Storage Engine wikipedia , lookup

Database model wikipedia , lookup

Transcript
MIS 421
Lab Final Exam
Study Guide
Lab Instructor
Kraig Pencil
The final exam may contain any (or all) of the following skills. You may use either SQL commands or the
Management Studio GUI to complete each task, unless specifically instructed to use one method or
another by the instructions.








Import data from an Excel spreadsheet by using the Import wizard provided by Management
Studio.
Create and save a table (included PK, FK and relationship(s) to other tables
Create and save a Management Studio ERD for your database.
Create and save views:
o That show data from multiple tables
o That use existing system functions, such as Count(), Sum(), Average()
o That use DISTINCT, GROUP BY, ORDER BY, and/or WHERE
o That use OUTER JOIN to show records from one table and a related table. (That is, show
all required records from Table A, whether or not there is a matching record in Table B.)
Create UPDATE and INSERT statements for changing data in fields or adding new data rows.
(Joining two source tables with FROM and JOIN clauses may be required.)
Create and save basic Functions, Stored Procedures and Triggers.
o Also, you must be able to write/use an EXEC command or a SELECT command to use the
function, stored procedure or trigger.
Backup your database and transaction log files. (RESTORE will not be required.)
Create and save an index on a field or on multiple fields in a table.
Related skills that may be necessary to do the above, but which are not explicitly stated above but have
been practiced this quarter are also required. (For example, you are expected to know basics, such as
how to create an alias for each table in a SELECT command, even though “Create an alias” is not listed
above.)