summaryrefslogtreecommitdiff
path: root/labs
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2019-12-30 15:56:41 -0700
committermo khan <mo.khan@gmail.com>2019-12-30 15:56:41 -0700
commitbb6fcaff5d00529ae9397f39c9a9d182345371fe (patch)
tree2d38bd20d2355894f5b7391e3c9b4431387711ba /labs
parent0facb7da31a3de6161e373ccec3b02be57b205db (diff)
Add lab1
Diffstat (limited to 'labs')
-rw-r--r--labs/1.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/labs/1.md b/labs/1.md
new file mode 100644
index 0000000..8095102
--- /dev/null
+++ b/labs/1.md
@@ -0,0 +1,27 @@
+Lab 1: Starting up your account in the Teradata University Network (TUN)
+
+1. Register for TUN as a student member at http://www.teradatauniversitynetwork.com/tun/ (For the student access password please check in the Course News and Announcements or contact your tutor).
+2. Create an account for the Teradata SQL Assistant (Note: this account is different from the one you created to be a TUN member): http://tunweb.teradata.ws/tunstudent/
+ To complete the registration form, please use the following information:
+
+ University: Athabasca University
+ Instructor: Larbi Esmahi
+ Course: COMP 378: Introduction to Database Management
+ Course Password: There is no course password, so just leave this field blank
+3. Read the SQL Assistant Web Edition User Manuals, which can be found under "Help" on the main menu of http://tunweb.teradata.ws/tunstudent/. Note that there are a number of additional user manuals available under the Help menu, if you need them (but you are not required to read them for the course).
+4. Log in to SQL Assistant, but leave the ‘Default database’ field blank.
+5. Familiarize yourself with the SQL Assistant using the following queries:
+ a. Create a table in your default database.
+ ```sql
+ CREATE TABLE people (id integer, address varchar(20), phone_number varchar(15));
+ ```
+ b. Insert records in the created table.
+ ```sql
+ INSERT INTO people values (10, '123 sesame street', '7803333222');
+ INSERT INTO people values (11, '1 university drive', '7805555444');
+ ```
+ c. Select records from the table.
+ ```sql
+ SELECT * from people;
+ ```
+6. Log out of the SQL Assistant and TUN.