Schedule by week | Information to cover |
---|---|
Note that the audio and Smartboard presentations for each class are posted within a couple of days. Please check the weekly schedule multiple times a week, I sometimes add things during the course of the week. You need to pass in the code you write and the output that is produced unless you are told otherwise. Sometimes this involves showing data that was written to a file/table. Please keep copies of all work you submit until you receive your final grade at the end of the semester. Comment on how I want the assignment: You should take the commands you do in SQL and the results and paste them into a word document. It should be similiar to the way I prepared the notes. You then send me the word document. I do not want you to show the screen itself - they are really hard to read! | |
Week #15 Week of December 10th |
OPEN LAB WEEK On Monday we will have an open lab from 11:00 until 2:00 in K101. On Tuesday, we will have open lab from 9:30 to 6:00 in K101 and on Thursday from 9:30 to 5:00. Lindsey and/or I will be there. Dave will be available Monday from 4:00 to 7:00 and Wed from 4:30 to 9:30. I will be available Monday at 10:00 in K112. This is your chance to get caught up and improve your grade - PLEASE take advantage of it. The final will be posted by December 12th to give you a week to work on it. It is a take-home final that will be posted at my website. The final is due at 9:00AM on Thursday, December 20th. Late finals will be penalized. FINAL EXAM: Final Exam REQUIRED STATUS SHEET: Required status sheet that must be turned in with the final. |
Week #14 Week of December 2nd |
OPEN LAB WEEK On Tuesday, we will have open lab from 9:30 to 6:00 in K101 and on Thursday from 9:30 to 5:00. Lindsey and/or I will be there. Dave will still be available on Monday and Wednesday from 4:00 to 7:00 in K116 and Saturday from 11:00 until 2:00 in K101. I will be available Monday at 10:00 in K112. This is your chance to get caught up and improve your grade - PLEASE take advantage of it. Assignments: Write code to take in an id and determine if the check digit is correct - use the notes on check digits posted last week to see the logic. Check back. |
Week #13 Week of November 26th |
I believe Lindsey is available Tues 2:30 to 6 and Thurs 3 to 5 in K101. Dave is available Mon and Wed from 4-7 in K116 and Sat 11 - 2 in K101.
I am available Monday at 10 and Tuesday at 2 this week. A group of alum are coming to talk about their careers on Tues at 11 and again at 12:30 in K101. Please try to come.
Donor example with 1 cursorMore on internal procedures and functions Still more on procedures and functions Introduction to triggers More on triggers Notes on check digits More on Procedures - Internal Procedures Separate speaker notes for More on Procedures - Internal Procedures Introduction to Triggers Separate speaker notes for Introduction to Triggers More and Still More on Procedures and Functions Separate speaker notes for More and Still More on Procedures and Functions More on Triggers Separate speaker notes for More on Triggers Assignments: Assignment on procedures, functions and triggers |
Week #12 Week of November 19th |
Lindsey is available for help Tues 2:30 to 6 in K101. Dave will be available on Monday and Wednesday from 4 to 9 - check K116 and
if he is not there, check with the help desk. Example we will look at: type examples We will look at types and then move on to procedures and functions. Here are notes on functions, procedures. Introduction to procedures Introduction to functions Internal procedures Introduction to PL/SQL Procedures Separate speaker notes for Introduction to PL/SQL Procedures Introduction to PL/SQL Functions Separate speaker notes for Introduction to PL/SQL Functions Catch up time! |
Week #11 Week of November 12th |
Lindsey is available for help Tues 2:30 to 6 and Thurs 3 to 5. Dave is available Wed from 4-9 (if anyone is around - let him know
if you are coming late) in K116 and Thursday from 4 - 7 (room not set yet - ask at the help desk) and Friday from 3 to 5.
I am available when I am not doing advisement so check K101 and K112 (my office). Speaking of advisement - please sign up! More cursors... Then exceptions. Introduction to exceptions Exceptions in PL/SQL Separate speaker notes for Exceptions in PL/SQL Assignments: Cursor/exception assignment |
Week #10 Week of November 5th |
Lindsey is available for help Tues 2:30 to 6 and Thurs 3 to 5 or 6. Dave is available Mon and Wed from 4-7 in K116 and Sat 11 - 2 in K101.
I am available Monday at 10 and Tues and Thurs at 2 this week. Continuing with cursor discussion we started last week. We will continue with cursors and then back up to see some the the things under Notes and handouts that we did not cover yet. Continuing example 1 using cursors Another set of cursor examples Covers: Another set of cursor exampes Separate speaker notes for Another set of cursor examples Examples we are going over in class: payprog.sql payprog1.sql payprog2.sql data.txt Data layout for studentchk.sql studentchk.sql createdonor.sql Script to create donor donorcursor1.sql donorcursor2.sql donorcursor3.sql decodecursor1.sql Assignments: In class we will start a cursor program. I want you to write a script that will handle the inven table and the department table. The script should accumulate the onhand for departments and write to a new table where you will store the dept, the department name and the total of the onhand. I would also like you to use the dbms lines to show the processing that happens. Everyone needs to turn in this script including the dbms output and a listing of what is on the new table. Please pass in by Thursday since I am going over it in class. Next assignment: Use cursors to solve these problems. First Problem:Write a PL/SQL program to accomplish the following: Using the sample emp database, give everyone in dept 10 a 5% raise, everyone in dept 20 a 7.5% raise, everyone in department dept 30 a 10% raise. Do this using a simple IF...ELSE and a loop. Second Problem:Modify the problem in #1 to meet the following criteria: IF dept is 10 and the salary is greater than 2000 give a 6% raise otherwise give a 7% raise. IF dept is 20 and the salary is greater than 2500 give a 5% raise otherwise give a 5.5% raise. IF dept is 30 and the salary is greater than 1000 give a 7% raise otherwise give a 6.5% raise. Third Problem: Set up an inventory table and a transaction table that has sales, returns, and purchases (the transaction table should have a code with S for sales, R for returns and P for purchases). Create scripts to create and insert data into these tables. Fourth Problem: Using the tables you created in the fourth problem, process the transactions and determine the impact on inventory. Display information that gives the original inventory and the inventory after the sales, returns and purchases have been processed. You need to use cursors. |
Week #9 Week of October 29th |
Lindsey is available for help Tues 2:30 to 6 and Thurs 3 to 5 or 6. Dave is available Mon from 4-7 in K116 and Fri 3-6 as well as Sat 11 - 2 in K101.
I am available Monday at 10 and Tues and Thurs at 2 this week. We will look at the loops and data manipulation in PL/SQL that are listed under last week. Then we will continue on with PL/SQL. Returned to finish this handout: Introduction to PL/SQL Note the accompanying Powerpoint is listed on week #8. Then started cursors: Introduction to Cursors Example 1 using cursors Covers: Cursors in PL/SQL, cursor example and continuation of first cursor example Separate speaker notes for Cursors in PL/SQL, cursor example and continuation of first cursor example Assignments: Oracle Loop Assignment Oracle PL/SQL Intro Quiz - Start in class |
Week #8 Week of October 22th |
Lindsey is available Tues 2:30 to 6 and Thurs 3 to 6 in K101. Dave is available Mon and Wed from 4-7 in K116 and Sat 11 - 2 in K101.
I am available Monday at 10 and Tuesday at 2 this week. THURSDAY OPEN LAB for catch-up: This Thursday will be a catch-up day. K101 will be an open lab from 9:30 until 5:00. I will be there until around 3 and Lindsey will be there during 11, 12:30 and after 3. Please plan to come for as long as you can and work to get caught up! We will start PL/SQL this week. This week, I am going to look at The Introduction to PL/SQL (the beginning part), skip for a while the More examples of input/output procedures (we will go back to them) and work on Introduction to IF statements. The things below will probably be partially done and the rest we will look at next week. Introduction to PL/SQL Introduction to IF statements More on PL/SQL IF statements Introduction to loops Data manipulation in PL/SQL - introduction With the accompanying PowerPoint presentations: Introduction to PL/SQL Separate speaker notes for Introduction to PL/SQL PL/SQL - Using IF statements Separate speaker notes for PL/SQL - Using IF statements More on PL/SQL IF statements Separate speaker notes for More on PL/SQL IF statements Introduction to loops Introduction to loops Separate speaker notes for Introduction to loops Data manipulation in PL/SQL - introduction Separate speaker notes on Data manipulation in PL/SQL - introduction Assignments: IF assignment |
Week #7 Week of October 15th |
Lindsey is available Tues 2:30 to 6 and Thurs 3 to 6 in K101. Dave is available Mon and Wed from 4-7 in K116 and Sat 11 - 2 in K101.
I am available Tuesday at 2 this week. There is no class on Thursday. My goal is to finish the notes on SQL next week and then start on PL/SQL. This week we will continue looking at indexes and other constraints including keys. Please read the following on indexes, constraints and keys: Indexes in Oracle - An introduction More on Primary and Foreign keys Notes on key questions More on views (we already started to look at this) Information on database objects Script for input data A script to create the donation table, you can use the same technique to create the drive table if you do not have them. Create donation script Sorry, forgot I had this. Also please look at the accompanying presentations: Indexes in Oracle - An Introduction Separate speaker notes for Indexes in Oracle - An Introduction Primary and Foreign constraints with a relational database Separate speaker notes to accompany primary and foreign constraints with a relational database More on Primary and Foreign Keys also info from questions Separate speaker notes for More on Primary and Foreign Keys etc. More on views Separate speaker notes for More on views Interesting SQL/Oracle Article We looked at the two very simple and basic designs for the assignment. If you are interested in more informtion about database development, this free text looks good: Database Development Life Cycle Assignments: Key, index, constraint assignment Check back! |
Week #6 Week of October 8th |
Lindsey is available Tues 2:30 to 6 and Thurs 3 to 6 in K101. Dave is available Wed from 4-7 in K116 and Sat 11 - 2 in K101.
He will also be available Friday from 3 to 6 probably in K101 but you can check with the help desk. I am available at 10 on Wed in my office K112 and 2ish on Tues and Thurs in K101. We did not do reports last week so we will look at those first. Please read the following on indexes, constraints and keys: Indexes in Oracle - An introduction Also please look at the accompanying presentations: Indexes in Oracle - An Introduction Separate speaker notes for Indexes in Oracle - An Introduction Assignments: Views and Reports Oracle Key Example - we will work on this in class (this is a check off assignment) |
Week #5 Week of October 1st |
Lindsey is available Tues 2:30 to 6 and Thurs 3 to 6 in K101. Dave is available Mon and Wed from 4-7 in K116 and Sat 11 - 2 in K101.
I am available at 10 on Mon in my office K112 and 2ish on Tues and Thurs in K101. Realistically I think what I have posted will carry over into next week, but we will see. This is an example that you might find helpful: Examples Solution A few more examples We started looking at variables and got through Using Input Variables and some of more on variables. Using input variables More on variables with Oracle's SQL*Plus Table maintenance revisited (again) Continuation of table maintenance revisited (again) Using Input Variables Separate speaker notes for Using Input Variables More on variables with Oracle's SQL*Plus Separate speaker notes for More on variables with Oracle's SQL*Plus Table maintenance revisited (again) Separate speaker notes for Table maintenance revisted (again) Continuation of table maintenance revisited (again) Separate speaker notes for Continuation of table maintenance revisted (again) There was a qusestion about equijoin and looking at my notes, I could have done better. Try these! Equijoin notes Nonequijoin notes Now we are going to move on to views and reports and more on scripts. Introduction to views Introduction to reports Introduction to views Separate speaker notes for Introduction to views Introduction to Reports Separate speaker notes for Introduction to reports Resource on reports Scripts: To create a script use edit and the name of the script (.sql is added) and to run use @ scriptname. createdonor.sql Script to create donor Insert data into maintain table Insert data into maintain table ver 2 Assignments: Subquery assignment Check back! |
Week #4 Week of September 24th |
I have an office hours Mon at 10 and will be around Tues and Thurs at 2 for an hour or so in K101. Lindsey is available from 2:30 to 6
on Tues and 3 to 5 on Thurs. Dave is available Mon and Wed from 4-7 in K116. He cannot do Sat this week but will do Friday from 3-6
probably in K101 but you can check with the help desk. This is Enrollment Verification week and I have to verify you are in the class. If you have not passed in work or the email a week verifying you are in the class, then you need to contact me now to make sure you are not withdrawn from the class. We will continue looking at relational databases and then we will start looking at subqueries. Subqueries More on subqueries You should also look at the presentation on these topics especially the one that accompanies More on subqueries. Subqueries Separate speaker notes for subqueries More on Subqueries Separate speaker notes for More on subqueries Zipped subqueries Assignments: Subquery Quiz Note that the reference in 6 and 7 should have been to the data in problem 5 rather than problem 4 Multi table assignment |
Week #3 Week of September 17th |
I will be available Monday at 10 in my office K112 and Thursday at 2 in K101 (I have to change my office hour this week from Tues to Thurs).
Lindsey will be available at 2:30 from 6 and Thurs from 2:30 until 5. Dave our newest student tutor is available Mon and Wed from 4:00 to 7:00
(K116) and Saturday from 11:00 to 2:00in K101. There is a lot of support
and you should definitely use it if you have questions or encounter a problem. We are hear to help you succeed! Please take
advantage of that. To repeat: If you need help with something, now would be the time to ask your questions! We are going to start looking at the design of a database and the theory of relational databases. Please read information about third normal form and relational databases. I have put a variety of links to sources on the Web on the site under links and links to my site are listed below. For example: Normalization Please read the handout on definitions: Normalization definitions Please read the two examples - the first two postings under notes. Also view the slide presentation on normalization information about relational databases: Normalization - information on third normal form Separate speaker notes for normalization presentation Relational database information - information on 1 to 1, 1 to M, and M to M Separate speaker notes for relational database information Next we are going to start looking at relating tables: Introduction to multiple tables (relational) - joins Example of non-equijoin: nonequijoin Relational database examples Relational database notes and examples Goes with notes Introduction to multiple tables (relational) - joins - uses donor, donations and drive tables Separate speaker notes for relational database presentation Using join Join and where Information on join: www.sqlbook.com and then look up the kind of query you want: inner join for example. More information on joins Some interesting examples Questions about work with SQL on a home installed version. To highlight, copy and paste SQL commands and output when you are using a window that works like a command prompt window. Right click on the top border around the command window, select edit and then mark to highlight. Do the same right click edit and select copy. Then you can paste in a document. Assignments: We will start this quiz in class. Oracle quiz I am interested in having you play computer - I do not want you to use the computer to get the results. You can check your results if you want to, but please do it on your own. Function assignment In problem #1 just to be clear, I want you to take a name that has been written with the slash separator in the format last/first m and flip it so it has first m last using Oracle functions. Specifically it can be done using substr and instr. |
Week #2 Week of September 10th |
Please do not change any of the passwords we have given you. I need to be able to get to your site as does the IT staff
if there is a problem.
I will be available for help Monday at 10:30 in my office K112 and I will have lab time at 2 on
Tuesday and Thursday in K101. Lindsey will be available for the rest of the afternoon starting at 3. These are the notes that I will attempt to get through this week. More on maintaining an SQL table SQL functions More SQL functions Group SQL functions I may go further, so do check back. You should also look at the accompanying PowerPoint presentations: More on maintaining an SQL table Separate speaker notes for More on maintaining an SQL table SQL functions - part 1 character Separate speaker notes for SQL functions - part 1 characters SQL functions - part 2 numeric & date Separate speaker notes for SQL functions - part 2 numeric & date More SQL functions (includes DECODE, ways to edit SQL code and nested functions) Separate speaker notes for more SQL functions Group functions Separate speaker notes for group functions Always check back and see how we are doing! Assignments: Here is a script to create the emp table: Script to create emp table (createemp.sql) You can enter edit createemp.sql or another name at the SQL prompt. It will go into the editor and ask if you want to create a new script. Enter yes and paste the script in and save it. Return to the prompt and enter @ createemp.sql and it should run and create the table for you. If you are using putty, remember to have the script text in notepad and highlight it. When you go into the editor the right click will paste it or you can uses shift + ins to paste. You can then write and exit. Back at the SQL prompt is where you run it with the @. Inclass if statements (must be passed in by everyone) I want you to play computer and show me the output you think would be generated as opposed to running the query and letting Oracle give you the answer. Second SQL assignment Quiz 1 I am hoping your have already created a table that you can use for this quiz. If not you need to create one. I would suggest you create one that you can use with assignments from week 1 or week 2. Note that you need to show me the SQL and the results on all of the quiz questions. Check back! |
Week #1 Week of September 3rd |
I recommend one of the text books in the syllabus, but a textbook is not required. There is enough material on the web and in
my notes that I decided to make the book a recommendation. Please note that many students have found
it useful to have a copy of the text. I do recommend that you get one of these books or another book dealing with Oracle SQL
(we are using version 11g or 12c this semester) as a reference. We will not do chapter by chapter coverage, the text gives you
additional information on topics and a reference if you have questions. ional database information LOGIN information: You need to decide if you want to download Oracle, use the BCC labs or login from home using Putty. Note that there is a reference to help you download and instal under Using Oracle: Installation and login. Downloading Be very careful when you install, Oracle leaves a lot of footprints that makes reinstalling very difficult. You should have received the login information you need for this course. If not, let me know. PuTTY is available in the labs. Two sites that can be used to download PuTTY are: PuTTY PuTTY Using Putty (copy and paste) Basic steps to login to putty and get to Oracle: 1) Start putty and put in the hostname as cisweb.bristolcc.edu and the port as 220 2) At the login screen enter your username and your Linux password. 3) When you see that you are at cisweb, enter sqlplus12c.sh 4) You then connect to Oracle and need to enter your username and Oracle password 5) You should see the SQL prompt Now you can create a table. Note that after you create tables, to see existing tables select table_name from user_tables. Accompanying step-by-step notes First we will focus on getting into Oracle and then these are the notes that we will start to cover this week: Introduction to SQL in Oracle Create a table in SQL SQL Conditions These are the accompanying presentations: Presentations: Introduction to SQL in Oracle Separate speaker notes for Introduction to SQL in Oracle Create a table in SQL Separate speaker notes for Create a table in SQL SQL Conditions Separate speaker notes for SQL Conditions NOTES: Note: You can use the committ command to make sure your work gets saved. Copy from SQLPlus so you can paste it onto the document you are submitting as your assignent Assignments: I strongly urge you to do the COMMIT; after the table is created. Oracle assignment on introductory material (html) Oracle assignment on introductory material (doc) Comment on how I want the assignment: You should take the commands you do in SQL and the results and paste them into a word document. It should be similiar to the way I prepared the notes. You then send me the word document. I do not want you to show the screen itself or pictures of the screen - they are really hard to read! |