· 9 years ago · May 05, 2017, 04:02 AM
1
2Conversation opened. 4 messages. 1 message unread.
3
4Skip to content
5Using Macquarie University Student Email and Calendar Mail with screen readers
6Search
7
8
9
10Click here to enable desktop notifications for Macquarie University Student Email and Calendar Mail. Learn more Hide
11Mail
12COMPOSE
13Labels
14Inbox (2)
15Starred
16Sent Mail
17Drafts
18More
19Chat
20Luke Lahood
21
22Search people...
23 3xzal
24 hedieh.ranjbartabar
25 kamran.khalid
26 Luke Lahood
27
28 More
291 of 79
30
31Expand all Print all In new window
32luke.lahood@students.mq.edu.au
33Inbox
34x
35
36Luke Lahood 1:44 PM (14 minutes ago)
37
38
39Hedieh Ranjbartabar Attachments1:47 PM (12 minutes ago)
40________________________________ From: Luke Lahood <luke.lahood@students.mq.e...
41
42Luke Lahood Attachments1:57 PM (2 minutes ago)
43---------- Forwarded message ---------- From: Hedieh Ranjbartabar <hedieh.ran...
44
45Mail Delivery Subsystem <mailer-daemon@googlemail.com>
46Attachments1:57 PM (2 minutes ago)
47
48to me
49Error Icon
50Address not found
51Your message wasn't delivered to 3xzal@gmail.com because the address couldn't be found. Check for typos or unnecessary spaces and try again.
52LEARN MORE
53The response from the remote server was:
54550 5.1.1 The email account that you tried to reach does not exist. Please try double-checking the recipient's email address for typos or unnecessary spaces. Learn more at https://support.google.com/mail/?p=NoSuchUser w203si24014950iow.113 - gsmtp
55
56
57Final-Recipient: rfc822; 3xzal@gmail.com
58Action: failed
59Status: 5.1.1
60Remote-MTA: dns; gmail-smtp-in.l.google.com. (2607:f8b0:4001:c08::1b, the
61 server for the domain gmail.com.)
62Diagnostic-Code: smtp; 550-5.1.1 The email account that you tried to reach does not exist. Please try
63 550-5.1.1 double-checking the recipient's email address for typos or
64 550-5.1.1 unnecessary spaces. Learn more at
65 550 5.1.1 https://support.google.com/mail/?p=NoSuchUser w203si24014950iow.113 - gsmtp
66Last-Attempt-Date: Thu, 04 May 2017 20:57:37 -0700 (PDT)
67
68
69---------- Forwarded message ----------
70From: Luke Lahood <luke.lahood@students.mq.edu.au>
71To: 3xzal@gmail.com, kamran.khalid@students.mq.edu.au
72Cc:
73Bcc:
74Date: Fri, 5 May 2017 13:57:37 +1000
75Subject: Fwd: luke.lahood@students.mq.edu.au
76
77---------- Forwarded message ----------
78From: Hedieh Ranjbartabar <hedieh.ranjbartabar@mq.edu.au>
79Date: Fri, May 5, 2017 at 1:47 PM
80Subject: Re: luke.lahood@students.mq.edu.au
81To: Luke Lahood <luke.lahood@students.mq.edu.au>
82
83
84
85From: Luke Lahood <luke.lahood@students.mq.edu.au>
86Sent: Friday, May 5, 2017 1:44:57 PM
87To: Hedieh Ranjbartabar
88Subject: luke.lahood@students.mq.edu.au
89Attachments area
90
91Click here to Reply or Forward
92Using 0.01 GB
93Program Policies
94Powered by Google
95Last account activity: 0 minutes ago
96Open in 1 other location Details
97People (4)
98Mail Delivery Subsystem
99mailer-daemon@googlemail.com
100
101Show details
102
103
104/* DROP TABLE STATEMENTS*/
105
106DROP TABLE STAFF CASCADE CONSTRAINTS PURGE;
107DROP TABLE COURSE CASCADE CONSTRAINTS PURGE;
108DROP TABLE ENROLMENT CASCADE CONSTRAINTS PURGE;
109DROP TABLE ROSTER CASCADE CONSTRAINTS PURGE;
110DROP TABLE STUDENT CASCADE CONSTRAINTS PURGE;
111
112
113/* CREATE TABLE STATEMENTS*/
114
115CREATE TABLE STUDENT(
116STUDENTID NUMBER(8),
117STUDENTNAME VARCHAR2(45),
118STUDENTGPA NUMBER(3,2),
119CONSTRAINT STUDENT_PK PRIMARY KEY(STUDENTID));
120
121CREATE TABLE STAFF(
122STAFFID CHAR(10) NOT NULL,
123STAFFNAME VARCHAR2(45),
124STAFFPAYRATE NUMBER(5,2),
125STAFFPOSITION VARCHAR2(25),
126CONSTRAINT STAFF_PK PRIMARY KEY(STAFFID));
127----------------------------------------------
128CREATE TABLE COURSE(
129COURSEID CHAR(7) NOT NULL,
130COURSENAME VARCHAR2(60),
131CREDITPOINTS NUMBER(1),
132CONSTRAINT COURSE_PK PRIMARY KEY(COURSEID));
133----------------------------------------------
134CREATE TABLE ENROLMENT(
135STUDENTID NUMBER(8) NOT NULL,
136COURSEID CHAR(7) NOT NULL,
137ENROLDATE DATE,
138CONSTRAINT ENROL_PK PRIMARY KEY(COURSEID,STUDENTID),
139CONSTRAINT ENROL_FK1 FOREIGN KEY(COURSEID) REFERENCES COURSE(COURSEID),
140CONSTRAINT ENROL_FK2 FOREIGN KEY(STUDENTID) REFERENCES STUDENT(STUDENTID));
141
142CREATE TABLE ROSTER(
143COURSEID CHAR(7),
144STAFFID CHAR(10),
145HO
146RunThis.txt
147Open with Google Docs
148Displaying RunThis.txt.