SlideShare a Scribd company logo
The California Supreme Court ruled that an employer will be
liable for injuries sustained by individuals due to the negligent
driving of one of its employees, stating the following:
A person injured by someone driving a car in the course of
employment may sue not only the driver but that driver's
employer. The employer can be sued on two legal theories based
on tort principles: respondeat superior and negligent
entrustment.
Respondeat superior, a form of vicarious liability, makes an
employer liable, irrespective of fault, for negligent driving by
its employee in the scope of employment. The theory of
negligent entrustment makes an employer liable for its own
negligence in choosing an employee to drive a vehicle.
Write a 700- to 1,050-word paper, written in the third-person
voice, that addresses the following:
· Explore types of principal-agency relationships and determine
what type of relationship exists in this case between the driver,
Jose Carcamo, and the company, Sugar Transport of the
Northwest, LLC.
· What course of action do you recommend with respect to the
lawsuit and Carcamo's employment?
· Does Sugar Transport's Human Resources department have any
responsibility for their role in hiring Carcamo? If so, what other
employment law issues do you find legally problematic
concerning the hiring of Carcamo? Identify them and explain
the legal issues and laws that were violated.
Include justification for your responses by citing applicable
laws and/or legal cases in your discussion.
Format your paper consistent with APA guidelines, and include
headings that appropriately signal topics and keep your
document organized.Use a minimum of three different sources
within the paper in addition to the laws and legal cases required
above, and provide in-text citations. Any laws and legal cases
used in the body of your Individual Assignment: Diaz v.
Carcamo Legal Analysis
Purpose of Assignment
This assignment gives students an opportunity to understand
employment relationships in its various forms: principal-
agency, independent contractor, employer-employee at-will, and
non-compete contractual agreements. Students are tasked with
understanding how legal liability can occur to an organization
arising out of the doctrine of respondeat superior or vicarious
liability as it is also known. It further allows students to assess
how negligent hiring can result in negative consequences for an
organization.
Resources Required
Dawn Renae Diaz v. Jose Carcamo, 253 P.3d 535 (Cal. 2011)
Grading Guide
Content
Met
Partially Met
Not Met
Comments:
The student explores types of principal-agency relationships and
determines what type of relationship exists in this case between
the driver, Jose Carcamo, and the company, Sugar Transport of
the Northwest, LLC.
The student recommends a course of action with respect to the
lawsuit and Carcamo’s employment.
The student answers if Sugar Transport’s Human Resources
department has any responsibility for their role in hiring
Carcamo.
If the student determines Sugar Transport does have
responsibility for hiring Carcamo, the student answers what
other employment law issues are legally problematic concerning
the hiring of Carcamo.
The student identifies and explains the legal issues and laws
that were violated.
The student includes justification for responses by citing
applicable laws and legal cases.
The student uses a minimum of three outside sources.
The paper is 700 to 1,050 words in length.
Total Available
Total Earned
7
#/7
Writing Guidelines
Met
Partially Met
Not Met
Comments:
The paper—including tables and graphs, headings, title page,
and reference page—is consistent with APA formatting
guidelines and meets course-level requirements.
Intellectual property is recognized with in-text citations and a
reference page.
Paragraph and sentence transitions are present, logical, and
maintain the flow throughout the paper.
Sentences are complete, clear, and concise.
Rules of grammar and usage are followed including spelling and
punctuation.
Total Available
Total Earned
3
#/3
Assignment Total
#
10
#/10
Additional comments:
paper must also be included in the References page.
Charles WilliamsCS362Unit 3 Discussion Board
Structured Query Language for Data Management 1
Structured Query Language for Data Management 36-04-
17
Table of Contents
Phase 1- Database Design and DDL 3
Business Rules & Entity Tables 3
Entity Tables: 4
SQL CODE: 4
Screenshots: 8
Phase 2 – Security and DML 13
Task 1 14
Task 2 15
Task 3 16
Task 4 17
Task 5 18
Phase 3 - DML (Select) and Procedures 19
Task 1 19
Task 2 20
Task 3 21
Task 4 22
Task 5 23
Phase 4 – Architecture, Indexes 27
Step 1: CREATE TABLE [Degrees] 27
Step 2: Re-create ‘Classes’ TABLE to add ‘DegreeID’ column
and INSERT 6 classes 29
Step 3: ALTER TABLE [Students] 31
Step 5: DML script to INSERT INTO the ‘Students’ table
‘DegreeID’ data 33
Step 6: Display ERD 36
Phase 5 – Views, Transactions, Testing and Performance37
References 38
Phase 1- Database Design and DDL
I contracted to design and develop a database for CTU
that will store individual and confidential university data. This
database is required to give the back-end engineering to a front-
end web application with an instinctive User/Interface (U/I) to
be utilized by the college HR office. We've chosen to utilize
Microsoft SQL Server 2012 given the way of information to be
put away because it will be more secure, and it additionally
gives a suite of server upkeep apparatuses to be deserted with
the IT Department once the database and web application have
been tried and acknowledged by college partners.
Amid our preparatory gatherings, CTU's necessities
were characterized and enough perused to start making of the
database. The accompanying areas contain the business tenets
and element tables created amid the preparatory gatherings, and
additionally duplicates of all the SQL code used to manufacture
the database and make the Entity Relationship Diagram (ERD).
Business Rules & Entity Tables
Business Rules:
· A student has a name, a birth date, and gender.
· You must track the date the student started at the university
and his or her current GPA, as well as be able to inactivate him
or her without deleting information.
· For advising purposes, store the student's background/bio
information. This is like a little story.
· An advisor has a name and an e-mail address.
· Students are assigned to one advisor, but one advisor may
service multiple students.
· A class has a class code, name, and description.
· You need to indicate the specific classes a student is
taking/has taken at the university. Track the date the student
started a specific class and the grade earned in that class.
· Each class that a student takes has 4 assignments. Each
assignment is worth 100 points.Entity Tables:
SQL CODE:
Create Database:
CREATE DATABASE [Cameron_CTU]
CONTAINMENT = NONE
ON PRIMARY
( NAME = N'Cameron_CTU', FILENAME = N'c:Program
FilesMicrosoft SQL
ServerMSSQL11.SCAMERON_CTUMSSQLDATACameron_
CTU.mdf' , SIZE = 3072KB , FILEGROWTH = 1024KB )
LOG ON
( NAME = N'Cameron_CTU_log', FILENAME = N'c:Program
FilesMicrosoft SQL
ServerMSSQL11.SCAMERON_CTUMSSQLDATACameron_
CTU_log.ldf' , SIZE = 1024KB , FILEGROWTH = 01% )
GO
ALTER DATABASE [Cameron_CTU] SET
COMPATIBILITY_LEVEL = 110
GO
ALTER DATABASE [Cameron_CTU] SET
ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [Cameron_CTU] SET ANSI_NULLS OFF
GO
ALTER DATABASE [Cameron_CTU] SET ANSI_PADDING
OFF
GO
ALTER DATABASE [Cameron_CTU] SET ANSI_WARNINGS
OFF
GO
ALTER DATABASE [Cameron_CTU] SET ARITHABORT OFF
GO
ALTER DATABASE [Cameron_CTU] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [Cameron_CTU] SET
AUTO_CREATE_STATISTICS ON
GO
ALTER DATABASE [Cameron_CTU] SET AUTO_SHRINK
OFF
GO
ALTER DATABASE [Cameron_CTU] SET
AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [Cameron_CTU] SET
CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [Cameron_CTU] SET
CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [Cameron_CTU] SET
CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [Cameron_CTU] SET
NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [Cameron_CTU] SET
QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [Cameron_CTU] SET
RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [Cameron_CTU] SET
DISABLE_BROKER
GO
ALTER DATABASE [Cameron_CTU] SET
AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [Cameron_CTU] SET
DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [Cameron_CTU] SET
PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [Cameron_CTU] SET
READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [Cameron_CTU] SET READ_WRITE
GO
ALTER DATABASE [Cameron_CTU] SET RECOVERY
SIMPLE
GO
ALTER DATABASE [Cameron_CTU] SET MULTI_USER
GO
ALTER DATABASE [Cameron_CTU] SET PAGE_VERIFY
CHECKSUM
GO
ALTER DATABASE [Cameron_CTU] SET
TARGET_RECOVERY_TIME = 0 SECONDS
GO
USE [Cameron_CTU]
GO
IF NOT EXISTS (SELECT name FROM sys.filegroups WHERE
is_default=1 AND name = N'PRIMARY') ALTER DATABASE
[Cameron_CTU] MODIFY FILEGROUP [PRIMARY]
DEFAULT
GO
Create Students Table:
CREATE TABLE [dbo].[Students]
(
[StudentID] [int] IDENTITY(1,1) PRIMARY KEY NOT
NULL,
[FistName] [varchar](255) NOT NULL,
[LastName] [varchar](255) NOT NULL,
[BirthDate] [date] NOT NULL,
[Gender] [char](1) NOT NULL,
[StartDate] [date] NOT NULL,
[GPA] [numeric](4, 0) NOT NULL,
[IsActive] [varchar](50) NOT NULL,
[Bio] [varchar](255) NOT NULL,
[AdvisorID] [int] NOT NULL,
)
Create Advisors Table:
CREATE TABLE [dbo].[Advisors]
(
[AdvisorID] [int] IDENTITY(1,1) PRIMARY KEY NOT
NULL,
[FirstName] [varchar](50) NOT NULL,
[LastName] [varchar](50) NOT NULL,
[EmailAddr] [varchar](100) NOT NULL,
)
Create Classes Table:
CREATE TABLE [dbo].[Classes]
(
[ClassID] [int] IDENTITY(1,1) PRIMARY KEY NOT
NULL,
[ClassCode] [varchar](50) NOT NULL,
[ClassName] [varchar](100) NOT NULL,
[Description] [varchar](300) NOT NULL,
)
Create Students_Classes Table and make ‘AdvisorID’ and
‘DegreeID’ FOREIGN KEYS, and make ‘StudentID’ a
FOREIGN KEY on the Students_Classes table.
USE Cameron_CTU
CREATE TABLE Students
(StudentID INT IDENTITY PRIMARY KEY NOT NULL,
FirstName VARCHAR(35) NOT NULL,
LastName VARCHAR(30) NOT NULL,
BirthDate DATE NOT NULL,
Gender CHAR(1) NOT NULL,
StartDate DATE,
GPA DECIMAL(4,2),
IsActive CHAR(3) NOT NULL,
Bio VARCHAR(3000),
AdvisorID [int],
DegreeID [int] NOT NULL,
)
ALTER TABLE Students
ADD FOREIGN KEY (AdvisorID)
REFERENCES Advisors ([AdvisorID])
GO
ALTER TABLE Students
ADD FOREIGN KEY ([DegreeID])
REFERENCES Degrees ([DegreeID])
GO
ALTER TABLE Students_Classes
ADD FOREIGN KEY (StudentID)
REFERENCES Students(StudentID)
Once the relationships have been established, the ERD can be
created
New DML script to add required constraints for GPA, Gender,
and Assignments1 – Assignments4
USE Cameron_CTU
ALTER TABLE Students
ADD CONSTRAINT chkGPA
CHECK (GPA BETWEEN 0.00 and 4.00);
ALTER TABLE Students
ADD CONSTRAINT chkGender
CHECK (Gender IN ('M', 'F'));
ALTER TABLE Students_Classes
ADD CONSTRAINT chkAssignment1
CHECK (Assignment1 BETWEEN
0 AND 100);
ALTER TABLE Students_Classes
ADD CONSTRAINT chkAssignment2
CHECK (Assignment2 BETWEEN
0 AND 100);
ALTER TABLE Students_Classes
ADD CONSTRAINT chkAssignment3
CHECK (Assignment3 BETWEEN
0 AND 100);
ALTER TABLE Students_Classes
ADD CONSTRAINT chkAssignment4
CHECK (Assignment4 BETWEEN
0 AND 100);
This section contains screenshots of the query windows once the
code was executed successfully.Screenshots:
Create Database:
Create Students Table with FOREIGN KEYS:
Create Advisors Table:
Create Classes Table:
Create Students_Classes Table:
Alter [Students_Classes] & [Students] Tables to assign Foreign
Keys to them, which are PRIMARY KEYS on the referenced
tables. Once the relationships have been established, the ERD
can be created
New DML script to add required constraints for GPA, Gender,
and Assignments1 – Assignments4
New Database Diagram: ERD
Phase 2 – Security and DML
Carrying on from Phase 1 undertakings of making our college
database, with the four tables of Students, Advisors, Classes,
and Students_Classes, Phase 2 calls for information to be
embedded, erased, and refreshed. The INSERT articulation has
two approaches to enter. The positional embed embeds
requested esteems into another line in a similar request of the
table segments. A named-section embed names the correct
segment where each esteem's embedded into another line. Its
great practice to utilize a named-segment embed, which permits
your SQL code to work if the table's sections are reordered or
another segment is included. You would utilize INSERT
VALUES to determine segment esteems, and INSERT SELECT
to embed columns from another table. Some DBMS don't make
it obligatory to utilize the INTO watchword after the INSERT
articulation; be that as it may, you ought to utilize it for its
transportability abilities. (Fehily, 2008)
The UPDATE explanation is utilized to change esteems in a
table's current columns. You should be extremely careful when
utilizing the refresh explanation on the grounds that on the off
chance that you neglect to include the "WHERE" statement, you
will refresh all lines rather than simply your objective columns.
Keep in mind that each refreshed esteem needs to have similar
information sort or be absolutely convertible to an
indistinguishable sort from its segment. (Fehily, 2008)
The DELETE explanation is somewhat more capable in light of
the fact that it’s used to erase a whole line, not just a segment
or sections. You can erase only one or all columns of a table, so
be mindful of the erase explanation moreover. Without the
WHERE proviso, every single table column will be erased.
(Fehily, 2008)
Task 1
The first task was to insert data into four rows of the Classes
table. The following SQL code is what I used to accomplish the
task, followed by the screenshot of the query being executed
successfully.
INSERT INTO [Cameron_CTU].[DBO].[Classes]
( [ClassCode], [ClassName], [Description] )
VALUES
( 'ACCT306', 'Accounting 1', 'This course introduces
accounting concepts and explores the accounting environment.
It covers the basic structure of accounting, how to
maintain accounts, use account balances to prepare financial
statements, and complete the accounting cycle. It
also introduces the concept of internal control and how to
account for assets.' ),
( 'CS362', 'Structured Query Language for Data
Management', 'This course gives complete coverage of SQL,
with an emphasis on storage,
retrieval, and manipulation of data.' ),
( 'ENGL115', 'English Composition', 'In this course,
students focus on developing writing skills through practice and
revision.
Students will examine expository, critical, and
persuasive essay techniques.' ),
( 'FIN322', 'Investments', 'This course focuses on
investments and investment strategies. Various investment
vehicles such as stocks,
bonds, and commodities are examined. Students
will explore the principles of security analysis and valuation.' )
(Fehily, 2008)
Task 2
The second task was to insert data into three rows of the
Advisors table. The following SQL code is what I used to
accomplish the task, followed by the screenshot of the query
being executed successfully.
INSERT INTO [dbo].[Advisors]
( [FirstName],
[LastName],
[EmailAddr] )
VALUES
( 'Fred', 'Stone', '[email protected]' ),
( 'Bob', 'Gordon', '[email protected]' ),
( 'Jack', 'Simpson', '[email protected]')
(Fehily, 2008)
Task 3
The third task was to insert data into four rows of the Students
table. The following SQL code is what I used to accomplish the
task, followed by the screenshot of the query being executed
successfully.
INSERT INTO [dbo].[Students]
( [FirstName],
[LastName],
[BirthDate],
[Gender],
[StartDate],
[GPA],
[IsActive],
[Bio],
[AdvisorID] )
VALUES
( 'Craig', 'Franklin', '1970-03-15', 'm', '2010-05-30', 3.10, 'Yes',
'', 3 ),
( 'Harriet', 'Smith', '1982-04-15', 'f', '2010-05-30', 3.22, 'Yes',
'', 1 ),
( 'George', 'David', '1984-11-05', 'm', '2010-10-01', 0.00, 'Yes',
'', 3 ),
( 'Ben', 'Jefferson', '1976-09-25', 'm', '2009-02-21', 1.80, 'No',
'The student has gone on temporary leave to pursue other
opportunities but plans on returning in 1 year.', 3 )
(Fehily, 2008)Task 4
The fourth task was to delete the course named Investments
from the system, and the following SQL code is what I used to
accomplish the task, followed by the screenshot of the query
being executed successfully.
DELETE FROM Classes
WHERE ClassID = 'FIN322';
(Fehily, 2008)
Task 5
The fifth and final task called for changing 2 columns in a row
on the Students table, and the following SQL code is what I
used to accomplish the task, followed by the screenshot of the
query being executed successfully.
UPDATE Students
SET BirthDate = '1982-04-25',
GPA = 3.25
WHERE StudentID = '2';
(Fehily, 2008)
Phase 3 - DML (Select) and Procedures
Stage 3 has seven errands that call for recovering
information utilizing the SELECT and FROM Statements. The
SELECT condition calls for which section or segments to show,
and the FROM proviso distinguishes the table or tables the
segments have a place with. You can likewise utilize the AS
statement with a specific end goal to make segment assumed
names, which I'll go over in the last couple of errands. You can
likewise sort columns with the ORDER BY condition, which I'll
additionally hit on in the assignments. The WHERE provision
channels undesirable columns. Without it, you result would be
each column on your questioned table. Some other proclamation
conditions incorporate AND, OR, ORDER BY GROUP BY,
JOIN. There are two sorts of JOIN provisos. They are Implicit
and express. Certain is utilized a considerable measure, and you
may not understand your utilizing it because there is no genuine
JOIN proviso with JOIN in it; its suggested when you're
questioning more than one table. Let’s begin with the
assignments now, might we?
(Fehily, 2008)
The main thing will do is fix my SQL proclamation in the Phase
2 segment, Task 5. I settled it by utilizing StudentID in the
SELECT proviso. Task 1
The first task calls for a list of all active male students
assigned to Advisors 1 or 3.
So, we want to query the Advisor. Advisor ID, FirstName and
LastName columns along with the Students. AdvisorID,
FirstName, LastName, Birthdate, Gender, and GPA columns of
the Students and Advisors tables. We use an implicit JOIN with
the WHERE clause to JOIN the two tables of Student.
AdvisorID and Advisor. AdvisorID together. Below, you’ll find
the SQL Statement I used to retrieve the required data, and
screenshot that shows a successful query.
SELECT Gender, IsActive, AdvisorID
FROM Cameron_CTU.dbo.Students
WHERE Gender = 'm'
AND IsActive = 'yes'
AND AdvisorID IN (1,3)
Task 2
The second task asks for a list of students without a
biography. Here’s the SQL Statement I used, and screenshot
that shows a successful query.
Task 3
Task 3 is a very simple statement asking what classes are in the
English Department. This SQL statement involves a wild card
just after the L in the word “English”. The SQL statement and
its associated screenshot are below.
SELECT ClassCode, ClassName
FROM Cameron_CTU.dbo.Classes
WHERE ClassName LIKE 'ENGL%'
Task 4
Task 4 calls for a list of all students and their advisors, and
sorted by Advisors, and a few columns from the Students table
SELECT A.AdvisorID, A.FirstName, A.LastName,
S.AdvisorID, S.FirstName, S.LastName,BirthDate, Gender,
GPA
FROM Cameron_CTU.dbo.Students S,
Cameron_CTU.dbo.Advisors A
WHERE S.AdvisorID = A.AdvisorID
ORDER BY A.LastName, S.LastName ASC;
SELECT A.CustomerID, A.FirstName, A.LastName,
S.AdvisorID, S.FirstName, S.LastName,BirthDate, Gender,
GPA
FROM Cameron_CTU.dbo.Students S,
Cameron_CTU.dbo.Advisors A
WHERE S.AdvisorID = A.AdvisorID
ORDER BY A.LastName, S.LastName ASC;
Task 5
The fifth task calls for the number of students born in the 80s.
Below, you’ll find the SQL Statement I used to retrieve the
required data, and screenshot that shows a successful query.
SELECT COUNT (StudentID) as Students_born_in_the_80s
FROM Cameron_CTU.dbo.Students
WHERE BirthDate between '1980-01-1' AND '1989-12-31';
Task 6
Task 6 wanted to know the average GPA score sorted by
men and women. Here is the SQL code and screenshot.
Task 7
Task 7 is looking for all the advisors with only 1 student.
Here’s the SQL code and screenshot.
SELECT A.firstname, A.LastName,
COUNT (A.AdvisorID) AS Total_Active_Students
FROM Cameron_CTU.dbo.Students S,
Cameron_CTU.dbo.Advisors A
WHERE A.AdvisorID = S.AdvisorID AND S.IsActive = 'yes'
GROUP BY A.FirstName, A.LastName
HAVING COUNT (S.StudentID) = '1';
Phase 4 – Architecture, Indexes
Stage 4 requires an approach to track classes required for
degrees, and which degree understudies are seeking after. We
were given the errand of making a table for following degrees
with Degree Name and Degree Description. Nonetheless, the
most ideal approach to track the classes required for degrees is
to make a table named "Degrees" with sections marked
'DegreeID', 'Degree Name' and 'Degree Description', and
'Degree Code'. Additionally, adding a segment to the "Classes"
table, named DegreeID will help connect the "Degrees" and
"Classes" tables. After the tables have been made, I'll have to
test the engineering to guarantee it can render the outcomes I'm
searching for in questions. (Fehily, 2008)
Be that as it may, I simply got my review for my Phase 1 IP
with distinguished mistakes. See Phase 1 area for settled
mistakes. The blunders that need rectified are:
- Considerations with respect to my information sorts and field
lengths: FirstName and LastName too long
Fix imperatives for assignments 1 through 4 to guarantee just
0-100 can be information.
- Fix GPA Constraint to guarantee contribution of just 0.00 –
4.00, and allow just 3 add up to digits after decimal.
- Constrain "Sex" to either M or F, and IsActive to either Yes or
No.Step 1: CREATE TABLE [Degrees]
I’ll start by creating the table, ‘Degrees’ with the following
DDL script, followed by a screenshot of the query being
completed successfully, and the table structure that displays the
table columns to include the PRIMARY KEY, ‘DergeeID’.
USE [Cameron_CTU]
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Degrees]
(
[DegreeID] [int] IDENTITY(1,1) PRIMARY KEY NOT
NULL,
[DegreeName] [varchar](50) NOT NULL,
[DegreeDescription] [varchar](1000) NOT NULL,
[DegreeCode] [varchar](50) NOT NULL,
)
Step 2: Re-create ‘Classes’ TABLE to add ‘DegreeID’ column
and INSERT 6 classes
The next step is to delete and re-create the ‘Classes’ table,
and ensure that the ‘DegreeID’ column is included in the
creation, and made a FOREIGN KEY. Also, ensure you re-
insert the original 3 classes, and add 3 new classes into the
‘Classes’ table required by different degrees. And since you’ve
re-created the ‘Classes’ table with ‘DegreeID’ as a FOREIGN
KEY, make sure you add it to the INSERT INTO DDL script or
you’ll receive an error regarding the ‘DegreeID’ column.
Below are the following DDL scripts, followed by a screenshot
of the queries being completed successfully, and the table
structure that displays the table columns with ‘DegreeID’ as a
FOREIGN KEY, and the query results of the SELECT * FROM
Classes query.
USE [Cameron_CTU]
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Classes]
(
[ClassID] [int] IDENTITY(1,1) PRIMARY KEY NOT
NULL,
[DegreeID] [int] NOT NULL,
[ClassCode] [varchar](50) NOT NULL,
[ClassName] [varchar](100) NOT NULL,
[Description] [varchar](1000) NOT NULL,
)
ALTER TABLE [dbo].[Classes]
ADD FOREIGN KEY([DegreeID])
REFERENCES [dbo].[Degrees]([DegreeID])
GO
INSERT INTO [Cameron_CTU].[DBO].[Classes]
( [DegreeID], [ClassCode], [ClassName], [Description] )
VALUES
( '4', 'ACCT306', 'Accounting 1', 'This course
introduces accounting concepts and explores the accounting
environment. It covers the basic structure of accounting, how to
maintain
accounts, use account balances to prepare financial
statements, and complete the accounting cycle. It also
introduces the concept of internal control and how to account
for assets.' ),
( '5', 'CS362', 'Structured Query Language for Data
Management', 'This course gives complete coverage of SQL,
with an emphasis on storage, retrieval, and manipulation of
data.' ),
( '3', 'ENGL115', 'English Composition', 'In this
course, students focus on developing writing skills through
practice and revision. Students will examine expository,
critical, and persuasive
essay techniques.' ),
( '3', 'BHVS205', 'Managerial Psychology', 'This
course introduces Psyhology concepts that will serve as the
foundation to other concepts, such as Motivation and Emotion
and Interpersonal
Communications and Dynamics.' ),
( '4', 'CSS150', 'Introduction to Computer Security',
'This course covers Computer Security Principles, such as
Policy letters, Remote Logins, and Network Security.' ),
( '5', 'CS126', 'UNIX Fundamentals', 'This course
teaches you thed origins of the UNIX Operating System, and
teaches you how to build directories.' )
Step 3: ALTER TABLE [Students]
As the paragraph title implies, the next step is to add the
‘DegreeID’ column to the ‘Students’ table, and make it a
FOREIGN KEY. Below is the following DDL script used to add
the column, and make it a FOREIGN KEY, and the screenshot
of the successful command.
USE [Cameron_CTU]
GO
ALTER TABLE Students
ADD DegreeID [int] NOT NULL
GO
ALTER TABLE Students
ADD FOREIGN KEY (DegreeID)
REFERENCES Degrees(DegreeID)
Step 4: DML script to insert 3 test records in [Degrees]
The next step is to insert degree data into the ‘Degrees’
table. Below is the DML script used, and a screenshot of the
successful command along with an inset of the results for a
SELECT * FROM Degrees statement.
INSERT INTO [Cameron_CTU].[DBO].[Degrees]
( [DegreeCode], [DegreeName], [DegreeDescription] )
VALUES
( 'BSIP', 'Bachelor of Science in Psychology', 'The Bachelor’s
degree in General Psychology is designed to prepare students to
successfully navigate in the 21st century workplace, in a variety
of careers that focus on the business of people, including but
not limited to work in management, administration, research,
and sales. It is positioned to provide an overview of the major
psychological concepts, perspectives, and skills that explain
human behavior. ' ),
( 'BSIS', 'Bachelor of Science in Information Security', 'The
Bachelors of Science in Information Assurance and Security
degree allows undergraduate learners to acquire and apply
various processes, tools, technologies, and methods of securing
an enterprise; including security policies, social engineering,
access control, authentication, perimeter security, disaster
recovery and business continuity, risk management, incident
response, viruses, malware, spam, encryption, and other
infrastructure security techniques that include governance and
strategic alignment of IT and business. ' ),
( 'BSIT', 'Bachelor of Science in Information Technology', 'The
Bachelor of Science in Information Technology (BSIT)
curriculum includes both a common core, as well as
specialization-specific courses. The BSIT core provides a strong
foundation in the key information technology areas of
programming, systems administration, security, architecture,
databases, and ethics.' )
Step 5: DML script to INSERT INTO the ‘Students’ table
‘DegreeID’ data
The next step is to add the ‘DegreeID’ to 4 records
applicable to each of the 4 students. Below is the DML script
used to execute the command and a screenshot showing it was
successful.
INSERT INTO [Cameron_CTU].[dbo].[Students]
( [FirstName],
[LastName],
[BirthDate],
[Gender],
[StartDate],
[GPA],
[IsActive],
[Bio],
[AdvisorID],
[DegreeID] )
VALUES
( 'Craig', 'Franklin', '1970-03-15', 'm', '2010-05-30', 3.10, 'Yes',
NULL, 3, 3 ),
( 'Harriet', 'Smith', '1982-04-15', 'f', '2010-05-30', 3.22, 'Yes',
NULL, 1, 4 ),
( 'George', 'David', '1984-11-05', 'm', '2010-10-01', 0.00, 'Yes',
NULL, 3, 5 ),
( 'Ben', 'Jefferson', '1976-09-25', 'm', '2009-02-21', 1.80, 'No',
'The student has
gone on temporary leave to pursue other opportunities but
plans on returning in 1 year.', 3, 3 )
The last step is to execute a SELECT statement with an
implicit JOIN clause to show what degree each student is
pursuing.
USE Cameron_CTU
SELECT FirstName, LastName, Students.DegreeID,
Degrees.DegreeName
FROM Cameron_CTU.dbo.Students,
Cameron_CTU.dbo.Degrees
WHERE Students.DegreeID = Degrees.DegreeID;
Step 6: Display ERD
References
Fehily, C. (2008) Visual QuickStart Guide SQL, Third Edition,
[CourseSmart e-Book reader version] Retrieved from
http://wow.coursesmart.com/9781256745129/firstsection
The California Supreme Court ruled that an employer will be liable.docx

More Related Content

Similar to The California Supreme Court ruled that an employer will be liable.docx

NR-351 Transitions in Professional NursingWebsite Evaluation T.docx
NR-351 Transitions in Professional NursingWebsite Evaluation T.docxNR-351 Transitions in Professional NursingWebsite Evaluation T.docx
NR-351 Transitions in Professional NursingWebsite Evaluation T.docx
henrymartin15260
 
Cis 558 Education Specialist-snaptutorial.com
Cis 558 Education Specialist-snaptutorial.comCis 558 Education Specialist-snaptutorial.com
Cis 558 Education Specialist-snaptutorial.com
robertlesew96
 
Bco1102 case study project report
Bco1102 case study project reportBco1102 case study project report
Bco1102 case study project report
OzPaperHelp3
 
Cis 558 Effective Communication-snaptutorial.com
Cis 558  Effective Communication-snaptutorial.comCis 558  Effective Communication-snaptutorial.com
Cis 558 Effective Communication-snaptutorial.com
jhonklinz11
 
Uop mgt 434 week 3 diaz v. carcamo legal analysis new
Uop mgt 434 week 3 diaz v. carcamo legal analysis newUop mgt 434 week 3 diaz v. carcamo legal analysis new
Uop mgt 434 week 3 diaz v. carcamo legal analysis new
Faarooqkhaann
 
CIS 558 Enhance teaching / snaptutorial.com
CIS 558 Enhance teaching / snaptutorial.comCIS 558 Enhance teaching / snaptutorial.com
CIS 558 Enhance teaching / snaptutorial.com
donaldzs56
 
Cis 558 Exceptional Education-snaptutorial.com
Cis 558 Exceptional Education-snaptutorial.comCis 558 Exceptional Education-snaptutorial.com
Cis 558 Exceptional Education-snaptutorial.com
robertleses9
 
Assignment 3 Justification Report – PresentationNow that you ha.docx
Assignment 3 Justification Report – PresentationNow that you ha.docxAssignment 3 Justification Report – PresentationNow that you ha.docx
Assignment 3 Justification Report – PresentationNow that you ha.docx
rock73
 
1. What two conditions must be met before an entity can be classif.docx
1. What two conditions must be met before an entity can be classif.docx1. What two conditions must be met before an entity can be classif.docx
1. What two conditions must be met before an entity can be classif.docx
jackiewalcutt
 
CIS 558 Education Organization / snaptutorial.com
CIS 558 Education Organization / snaptutorial.comCIS 558 Education Organization / snaptutorial.com
CIS 558 Education Organization / snaptutorial.com
McdonaldRyan39
 
IT 655 Milestone One Guidelines and Rubric Presenta.docx
 IT 655 Milestone One Guidelines and Rubric   Presenta.docx IT 655 Milestone One Guidelines and Rubric   Presenta.docx
IT 655 Milestone One Guidelines and Rubric Presenta.docx
aryan532920
 

Similar to The California Supreme Court ruled that an employer will be liable.docx (11)

NR-351 Transitions in Professional NursingWebsite Evaluation T.docx
NR-351 Transitions in Professional NursingWebsite Evaluation T.docxNR-351 Transitions in Professional NursingWebsite Evaluation T.docx
NR-351 Transitions in Professional NursingWebsite Evaluation T.docx
 
Cis 558 Education Specialist-snaptutorial.com
Cis 558 Education Specialist-snaptutorial.comCis 558 Education Specialist-snaptutorial.com
Cis 558 Education Specialist-snaptutorial.com
 
Bco1102 case study project report
Bco1102 case study project reportBco1102 case study project report
Bco1102 case study project report
 
Cis 558 Effective Communication-snaptutorial.com
Cis 558  Effective Communication-snaptutorial.comCis 558  Effective Communication-snaptutorial.com
Cis 558 Effective Communication-snaptutorial.com
 
Uop mgt 434 week 3 diaz v. carcamo legal analysis new
Uop mgt 434 week 3 diaz v. carcamo legal analysis newUop mgt 434 week 3 diaz v. carcamo legal analysis new
Uop mgt 434 week 3 diaz v. carcamo legal analysis new
 
CIS 558 Enhance teaching / snaptutorial.com
CIS 558 Enhance teaching / snaptutorial.comCIS 558 Enhance teaching / snaptutorial.com
CIS 558 Enhance teaching / snaptutorial.com
 
Cis 558 Exceptional Education-snaptutorial.com
Cis 558 Exceptional Education-snaptutorial.comCis 558 Exceptional Education-snaptutorial.com
Cis 558 Exceptional Education-snaptutorial.com
 
Assignment 3 Justification Report – PresentationNow that you ha.docx
Assignment 3 Justification Report – PresentationNow that you ha.docxAssignment 3 Justification Report – PresentationNow that you ha.docx
Assignment 3 Justification Report – PresentationNow that you ha.docx
 
1. What two conditions must be met before an entity can be classif.docx
1. What two conditions must be met before an entity can be classif.docx1. What two conditions must be met before an entity can be classif.docx
1. What two conditions must be met before an entity can be classif.docx
 
CIS 558 Education Organization / snaptutorial.com
CIS 558 Education Organization / snaptutorial.comCIS 558 Education Organization / snaptutorial.com
CIS 558 Education Organization / snaptutorial.com
 
IT 655 Milestone One Guidelines and Rubric Presenta.docx
 IT 655 Milestone One Guidelines and Rubric   Presenta.docx IT 655 Milestone One Guidelines and Rubric   Presenta.docx
IT 655 Milestone One Guidelines and Rubric Presenta.docx
 

More from mehek4

Accident Up Ahead!Listen to this text being read aloud by a hu.docx
Accident Up Ahead!Listen to this text being read aloud by a hu.docxAccident Up Ahead!Listen to this text being read aloud by a hu.docx
Accident Up Ahead!Listen to this text being read aloud by a hu.docx
mehek4
 
Access the annual report provided in Course Materials to complete .docx
Access the annual report provided in Course Materials to complete .docxAccess the annual report provided in Course Materials to complete .docx
Access the annual report provided in Course Materials to complete .docx
mehek4
 
Access the Internet to acquire a copy of the most recent annual re.docx
Access the Internet to acquire a copy of the most recent annual re.docxAccess the Internet to acquire a copy of the most recent annual re.docx
Access the Internet to acquire a copy of the most recent annual re.docx
mehek4
 
Acc 290 Final Exam MCQs) Which financial statement is used to de.docx
Acc 290 Final Exam MCQs) Which financial statement is used to de.docxAcc 290 Final Exam MCQs) Which financial statement is used to de.docx
Acc 290 Final Exam MCQs) Which financial statement is used to de.docx
mehek4
 
AC2760Week 2 Assignment.docx
AC2760Week 2 Assignment.docxAC2760Week 2 Assignment.docx
AC2760Week 2 Assignment.docx
mehek4
 
AC1220 Lab 5.1IntroductionJake determines that owning the .docx
AC1220 Lab 5.1IntroductionJake determines that owning the .docxAC1220 Lab 5.1IntroductionJake determines that owning the .docx
AC1220 Lab 5.1IntroductionJake determines that owning the .docx
mehek4
 
Abstract(Provide the main generalizable statement resulting .docx
Abstract(Provide the main generalizable statement resulting .docxAbstract(Provide the main generalizable statement resulting .docx
Abstract(Provide the main generalizable statement resulting .docx
mehek4
 
Abusive relationships are at the core of the Coetzee novel, whether .docx
Abusive relationships are at the core of the Coetzee novel, whether .docxAbusive relationships are at the core of the Coetzee novel, whether .docx
Abusive relationships are at the core of the Coetzee novel, whether .docx
mehek4
 
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufano,.docx
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufano,.docxAbraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufano,.docx
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufano,.docx
mehek4
 
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufan.docx
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufan.docxAbraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufan.docx
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufan.docx
mehek4
 
A.Da la correcta conjugación para cada oración.(Give the corre.docx
A.Da la correcta conjugación para cada oración.(Give the corre.docxA.Da la correcta conjugación para cada oración.(Give the corre.docx
A.Da la correcta conjugación para cada oración.(Give the corre.docx
mehek4
 
Abraham Lincoln is considered by many historians to be the greatest .docx
Abraham Lincoln is considered by many historians to be the greatest .docxAbraham Lincoln is considered by many historians to be the greatest .docx
Abraham Lincoln is considered by many historians to be the greatest .docx
mehek4
 
About half of the paid lobbyists in Washington are former government.docx
About half of the paid lobbyists in Washington are former government.docxAbout half of the paid lobbyists in Washington are former government.docx
About half of the paid lobbyists in Washington are former government.docx
mehek4
 
ABC sells 400 shares of its $23 par common stock for $27. The entry .docx
ABC sells 400 shares of its $23 par common stock for $27. The entry .docxABC sells 400 shares of its $23 par common stock for $27. The entry .docx
ABC sells 400 shares of its $23 par common stock for $27. The entry .docx
mehek4
 
ABC company is increasing its equity by selling additional shares to.docx
ABC company is increasing its equity by selling additional shares to.docxABC company is increasing its equity by selling additional shares to.docx
ABC company is increasing its equity by selling additional shares to.docx
mehek4
 
A.The unification of previously fractious and divided Arab tribes.docx
A.The unification of previously fractious and divided Arab tribes.docxA.The unification of previously fractious and divided Arab tribes.docx
A.The unification of previously fractious and divided Arab tribes.docx
mehek4
 
A.Escribe la forma correcta del verbo en españolNosotros siem.docx
A.Escribe la forma correcta del verbo en españolNosotros siem.docxA.Escribe la forma correcta del verbo en españolNosotros siem.docx
A.Escribe la forma correcta del verbo en españolNosotros siem.docx
mehek4
 
A.Both countries fought for independence from Great Britain, b.docx
A.Both countries fought for independence from Great Britain, b.docxA.Both countries fought for independence from Great Britain, b.docx
A.Both countries fought for independence from Great Britain, b.docx
mehek4
 
a.A patent purchased from J. Miller on January 1, 2010, for a ca.docx
a.A patent purchased from J. Miller on January 1, 2010, for a ca.docxa.A patent purchased from J. Miller on January 1, 2010, for a ca.docx
a.A patent purchased from J. Miller on January 1, 2010, for a ca.docx
mehek4
 
A.) Imagine that astronomers have discovered intelligent life in a n.docx
A.) Imagine that astronomers have discovered intelligent life in a n.docxA.) Imagine that astronomers have discovered intelligent life in a n.docx
A.) Imagine that astronomers have discovered intelligent life in a n.docx
mehek4
 

More from mehek4 (20)

Accident Up Ahead!Listen to this text being read aloud by a hu.docx
Accident Up Ahead!Listen to this text being read aloud by a hu.docxAccident Up Ahead!Listen to this text being read aloud by a hu.docx
Accident Up Ahead!Listen to this text being read aloud by a hu.docx
 
Access the annual report provided in Course Materials to complete .docx
Access the annual report provided in Course Materials to complete .docxAccess the annual report provided in Course Materials to complete .docx
Access the annual report provided in Course Materials to complete .docx
 
Access the Internet to acquire a copy of the most recent annual re.docx
Access the Internet to acquire a copy of the most recent annual re.docxAccess the Internet to acquire a copy of the most recent annual re.docx
Access the Internet to acquire a copy of the most recent annual re.docx
 
Acc 290 Final Exam MCQs) Which financial statement is used to de.docx
Acc 290 Final Exam MCQs) Which financial statement is used to de.docxAcc 290 Final Exam MCQs) Which financial statement is used to de.docx
Acc 290 Final Exam MCQs) Which financial statement is used to de.docx
 
AC2760Week 2 Assignment.docx
AC2760Week 2 Assignment.docxAC2760Week 2 Assignment.docx
AC2760Week 2 Assignment.docx
 
AC1220 Lab 5.1IntroductionJake determines that owning the .docx
AC1220 Lab 5.1IntroductionJake determines that owning the .docxAC1220 Lab 5.1IntroductionJake determines that owning the .docx
AC1220 Lab 5.1IntroductionJake determines that owning the .docx
 
Abstract(Provide the main generalizable statement resulting .docx
Abstract(Provide the main generalizable statement resulting .docxAbstract(Provide the main generalizable statement resulting .docx
Abstract(Provide the main generalizable statement resulting .docx
 
Abusive relationships are at the core of the Coetzee novel, whether .docx
Abusive relationships are at the core of the Coetzee novel, whether .docxAbusive relationships are at the core of the Coetzee novel, whether .docx
Abusive relationships are at the core of the Coetzee novel, whether .docx
 
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufano,.docx
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufano,.docxAbraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufano,.docx
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufano,.docx
 
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufan.docx
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufan.docxAbraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufan.docx
Abraham, J., Sick, B., Anderson, J., Berg, A., Dehmer, C., & Tufan.docx
 
A.Da la correcta conjugación para cada oración.(Give the corre.docx
A.Da la correcta conjugación para cada oración.(Give the corre.docxA.Da la correcta conjugación para cada oración.(Give the corre.docx
A.Da la correcta conjugación para cada oración.(Give the corre.docx
 
Abraham Lincoln is considered by many historians to be the greatest .docx
Abraham Lincoln is considered by many historians to be the greatest .docxAbraham Lincoln is considered by many historians to be the greatest .docx
Abraham Lincoln is considered by many historians to be the greatest .docx
 
About half of the paid lobbyists in Washington are former government.docx
About half of the paid lobbyists in Washington are former government.docxAbout half of the paid lobbyists in Washington are former government.docx
About half of the paid lobbyists in Washington are former government.docx
 
ABC sells 400 shares of its $23 par common stock for $27. The entry .docx
ABC sells 400 shares of its $23 par common stock for $27. The entry .docxABC sells 400 shares of its $23 par common stock for $27. The entry .docx
ABC sells 400 shares of its $23 par common stock for $27. The entry .docx
 
ABC company is increasing its equity by selling additional shares to.docx
ABC company is increasing its equity by selling additional shares to.docxABC company is increasing its equity by selling additional shares to.docx
ABC company is increasing its equity by selling additional shares to.docx
 
A.The unification of previously fractious and divided Arab tribes.docx
A.The unification of previously fractious and divided Arab tribes.docxA.The unification of previously fractious and divided Arab tribes.docx
A.The unification of previously fractious and divided Arab tribes.docx
 
A.Escribe la forma correcta del verbo en españolNosotros siem.docx
A.Escribe la forma correcta del verbo en españolNosotros siem.docxA.Escribe la forma correcta del verbo en españolNosotros siem.docx
A.Escribe la forma correcta del verbo en españolNosotros siem.docx
 
A.Both countries fought for independence from Great Britain, b.docx
A.Both countries fought for independence from Great Britain, b.docxA.Both countries fought for independence from Great Britain, b.docx
A.Both countries fought for independence from Great Britain, b.docx
 
a.A patent purchased from J. Miller on January 1, 2010, for a ca.docx
a.A patent purchased from J. Miller on January 1, 2010, for a ca.docxa.A patent purchased from J. Miller on January 1, 2010, for a ca.docx
a.A patent purchased from J. Miller on January 1, 2010, for a ca.docx
 
A.) Imagine that astronomers have discovered intelligent life in a n.docx
A.) Imagine that astronomers have discovered intelligent life in a n.docxA.) Imagine that astronomers have discovered intelligent life in a n.docx
A.) Imagine that astronomers have discovered intelligent life in a n.docx
 

Recently uploaded

Solutons Maths Escape Room Spatial .pptx
Solutons Maths Escape Room Spatial .pptxSolutons Maths Escape Room Spatial .pptx
Solutons Maths Escape Room Spatial .pptx
spdendr
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
adhitya5119
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
MysoreMuleSoftMeetup
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
TechSoup
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
Jyoti Chand
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Leena Ghag-Sakpal
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
Wahiba Chair Training & Consulting
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
haiqairshad
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
S. Raj Kumar
 

Recently uploaded (20)

Solutons Maths Escape Room Spatial .pptx
Solutons Maths Escape Room Spatial .pptxSolutons Maths Escape Room Spatial .pptx
Solutons Maths Escape Room Spatial .pptx
 
Advanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docxAdvanced Java[Extra Concepts, Not Difficult].docx
Advanced Java[Extra Concepts, Not Difficult].docx
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 
Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47Mule event processing models | MuleSoft Mysore Meetup #47
Mule event processing models | MuleSoft Mysore Meetup #47
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
Leveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit InnovationLeveraging Generative AI to Drive Nonprofit Innovation
Leveraging Generative AI to Drive Nonprofit Innovation
 
Wound healing PPT
Wound healing PPTWound healing PPT
Wound healing PPT
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
Bed Making ( Introduction, Purpose, Types, Articles, Scientific principles, N...
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience How to Create a More Engaging and Human Online Learning Experience
How to Create a More Engaging and Human Online Learning Experience
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skillsspot a liar (Haiqa 146).pptx Technical writhing and presentation skills
spot a liar (Haiqa 146).pptx Technical writhing and presentation skills
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
 
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching AptitudeUGC NET Exam Paper 1- Unit 1:Teaching Aptitude
UGC NET Exam Paper 1- Unit 1:Teaching Aptitude
 

The California Supreme Court ruled that an employer will be liable.docx

  • 1. The California Supreme Court ruled that an employer will be liable for injuries sustained by individuals due to the negligent driving of one of its employees, stating the following: A person injured by someone driving a car in the course of employment may sue not only the driver but that driver's employer. The employer can be sued on two legal theories based on tort principles: respondeat superior and negligent entrustment. Respondeat superior, a form of vicarious liability, makes an employer liable, irrespective of fault, for negligent driving by its employee in the scope of employment. The theory of negligent entrustment makes an employer liable for its own negligence in choosing an employee to drive a vehicle. Write a 700- to 1,050-word paper, written in the third-person voice, that addresses the following: · Explore types of principal-agency relationships and determine what type of relationship exists in this case between the driver, Jose Carcamo, and the company, Sugar Transport of the Northwest, LLC. · What course of action do you recommend with respect to the lawsuit and Carcamo's employment? · Does Sugar Transport's Human Resources department have any responsibility for their role in hiring Carcamo? If so, what other employment law issues do you find legally problematic concerning the hiring of Carcamo? Identify them and explain the legal issues and laws that were violated. Include justification for your responses by citing applicable laws and/or legal cases in your discussion. Format your paper consistent with APA guidelines, and include headings that appropriately signal topics and keep your document organized.Use a minimum of three different sources within the paper in addition to the laws and legal cases required above, and provide in-text citations. Any laws and legal cases used in the body of your Individual Assignment: Diaz v.
  • 2. Carcamo Legal Analysis Purpose of Assignment This assignment gives students an opportunity to understand employment relationships in its various forms: principal- agency, independent contractor, employer-employee at-will, and non-compete contractual agreements. Students are tasked with understanding how legal liability can occur to an organization arising out of the doctrine of respondeat superior or vicarious liability as it is also known. It further allows students to assess how negligent hiring can result in negative consequences for an organization. Resources Required Dawn Renae Diaz v. Jose Carcamo, 253 P.3d 535 (Cal. 2011) Grading Guide Content Met Partially Met Not Met Comments: The student explores types of principal-agency relationships and determines what type of relationship exists in this case between the driver, Jose Carcamo, and the company, Sugar Transport of the Northwest, LLC. The student recommends a course of action with respect to the lawsuit and Carcamo’s employment.
  • 3. The student answers if Sugar Transport’s Human Resources department has any responsibility for their role in hiring Carcamo. If the student determines Sugar Transport does have responsibility for hiring Carcamo, the student answers what other employment law issues are legally problematic concerning the hiring of Carcamo. The student identifies and explains the legal issues and laws that were violated. The student includes justification for responses by citing applicable laws and legal cases. The student uses a minimum of three outside sources.
  • 4. The paper is 700 to 1,050 words in length. Total Available Total Earned 7 #/7 Writing Guidelines Met Partially Met Not Met Comments: The paper—including tables and graphs, headings, title page, and reference page—is consistent with APA formatting guidelines and meets course-level requirements. Intellectual property is recognized with in-text citations and a reference page.
  • 5. Paragraph and sentence transitions are present, logical, and maintain the flow throughout the paper. Sentences are complete, clear, and concise. Rules of grammar and usage are followed including spelling and punctuation. Total Available Total Earned 3 #/3 Assignment Total # 10 #/10 Additional comments:
  • 6. paper must also be included in the References page. Charles WilliamsCS362Unit 3 Discussion Board Structured Query Language for Data Management 1 Structured Query Language for Data Management 36-04- 17 Table of Contents Phase 1- Database Design and DDL 3 Business Rules & Entity Tables 3 Entity Tables: 4 SQL CODE: 4 Screenshots: 8 Phase 2 – Security and DML 13 Task 1 14 Task 2 15 Task 3 16 Task 4 17 Task 5 18 Phase 3 - DML (Select) and Procedures 19 Task 1 19 Task 2 20 Task 3 21 Task 4 22 Task 5 23 Phase 4 – Architecture, Indexes 27 Step 1: CREATE TABLE [Degrees] 27 Step 2: Re-create ‘Classes’ TABLE to add ‘DegreeID’ column and INSERT 6 classes 29 Step 3: ALTER TABLE [Students] 31 Step 5: DML script to INSERT INTO the ‘Students’ table
  • 7. ‘DegreeID’ data 33 Step 6: Display ERD 36 Phase 5 – Views, Transactions, Testing and Performance37 References 38 Phase 1- Database Design and DDL I contracted to design and develop a database for CTU that will store individual and confidential university data. This database is required to give the back-end engineering to a front- end web application with an instinctive User/Interface (U/I) to be utilized by the college HR office. We've chosen to utilize Microsoft SQL Server 2012 given the way of information to be put away because it will be more secure, and it additionally gives a suite of server upkeep apparatuses to be deserted with the IT Department once the database and web application have been tried and acknowledged by college partners. Amid our preparatory gatherings, CTU's necessities were characterized and enough perused to start making of the database. The accompanying areas contain the business tenets and element tables created amid the preparatory gatherings, and additionally duplicates of all the SQL code used to manufacture the database and make the Entity Relationship Diagram (ERD). Business Rules & Entity Tables Business Rules: · A student has a name, a birth date, and gender. · You must track the date the student started at the university and his or her current GPA, as well as be able to inactivate him or her without deleting information. · For advising purposes, store the student's background/bio information. This is like a little story. · An advisor has a name and an e-mail address. · Students are assigned to one advisor, but one advisor may service multiple students. · A class has a class code, name, and description. · You need to indicate the specific classes a student is taking/has taken at the university. Track the date the student
  • 8. started a specific class and the grade earned in that class. · Each class that a student takes has 4 assignments. Each assignment is worth 100 points.Entity Tables: SQL CODE: Create Database: CREATE DATABASE [Cameron_CTU] CONTAINMENT = NONE ON PRIMARY ( NAME = N'Cameron_CTU', FILENAME = N'c:Program FilesMicrosoft SQL ServerMSSQL11.SCAMERON_CTUMSSQLDATACameron_ CTU.mdf' , SIZE = 3072KB , FILEGROWTH = 1024KB ) LOG ON ( NAME = N'Cameron_CTU_log', FILENAME = N'c:Program FilesMicrosoft SQL ServerMSSQL11.SCAMERON_CTUMSSQLDATACameron_ CTU_log.ldf' , SIZE = 1024KB , FILEGROWTH = 01% ) GO ALTER DATABASE [Cameron_CTU] SET COMPATIBILITY_LEVEL = 110 GO ALTER DATABASE [Cameron_CTU] SET ANSI_NULL_DEFAULT OFF GO ALTER DATABASE [Cameron_CTU] SET ANSI_NULLS OFF GO ALTER DATABASE [Cameron_CTU] SET ANSI_PADDING OFF GO ALTER DATABASE [Cameron_CTU] SET ANSI_WARNINGS OFF GO ALTER DATABASE [Cameron_CTU] SET ARITHABORT OFF GO ALTER DATABASE [Cameron_CTU] SET AUTO_CLOSE OFF GO
  • 9. ALTER DATABASE [Cameron_CTU] SET AUTO_CREATE_STATISTICS ON GO ALTER DATABASE [Cameron_CTU] SET AUTO_SHRINK OFF GO ALTER DATABASE [Cameron_CTU] SET AUTO_UPDATE_STATISTICS ON GO ALTER DATABASE [Cameron_CTU] SET CURSOR_CLOSE_ON_COMMIT OFF GO ALTER DATABASE [Cameron_CTU] SET CURSOR_DEFAULT GLOBAL GO ALTER DATABASE [Cameron_CTU] SET CONCAT_NULL_YIELDS_NULL OFF GO ALTER DATABASE [Cameron_CTU] SET NUMERIC_ROUNDABORT OFF GO ALTER DATABASE [Cameron_CTU] SET QUOTED_IDENTIFIER OFF GO ALTER DATABASE [Cameron_CTU] SET RECURSIVE_TRIGGERS OFF GO ALTER DATABASE [Cameron_CTU] SET DISABLE_BROKER GO ALTER DATABASE [Cameron_CTU] SET AUTO_UPDATE_STATISTICS_ASYNC OFF GO ALTER DATABASE [Cameron_CTU] SET DATE_CORRELATION_OPTIMIZATION OFF GO
  • 10. ALTER DATABASE [Cameron_CTU] SET PARAMETERIZATION SIMPLE GO ALTER DATABASE [Cameron_CTU] SET READ_COMMITTED_SNAPSHOT OFF GO ALTER DATABASE [Cameron_CTU] SET READ_WRITE GO ALTER DATABASE [Cameron_CTU] SET RECOVERY SIMPLE GO ALTER DATABASE [Cameron_CTU] SET MULTI_USER GO ALTER DATABASE [Cameron_CTU] SET PAGE_VERIFY CHECKSUM GO ALTER DATABASE [Cameron_CTU] SET TARGET_RECOVERY_TIME = 0 SECONDS GO USE [Cameron_CTU] GO IF NOT EXISTS (SELECT name FROM sys.filegroups WHERE is_default=1 AND name = N'PRIMARY') ALTER DATABASE [Cameron_CTU] MODIFY FILEGROUP [PRIMARY] DEFAULT GO Create Students Table:
  • 11. CREATE TABLE [dbo].[Students] ( [StudentID] [int] IDENTITY(1,1) PRIMARY KEY NOT NULL, [FistName] [varchar](255) NOT NULL, [LastName] [varchar](255) NOT NULL, [BirthDate] [date] NOT NULL, [Gender] [char](1) NOT NULL, [StartDate] [date] NOT NULL, [GPA] [numeric](4, 0) NOT NULL, [IsActive] [varchar](50) NOT NULL, [Bio] [varchar](255) NOT NULL, [AdvisorID] [int] NOT NULL, ) Create Advisors Table: CREATE TABLE [dbo].[Advisors] ( [AdvisorID] [int] IDENTITY(1,1) PRIMARY KEY NOT NULL, [FirstName] [varchar](50) NOT NULL, [LastName] [varchar](50) NOT NULL, [EmailAddr] [varchar](100) NOT NULL, ) Create Classes Table: CREATE TABLE [dbo].[Classes] ( [ClassID] [int] IDENTITY(1,1) PRIMARY KEY NOT NULL, [ClassCode] [varchar](50) NOT NULL, [ClassName] [varchar](100) NOT NULL, [Description] [varchar](300) NOT NULL, ) Create Students_Classes Table and make ‘AdvisorID’ and ‘DegreeID’ FOREIGN KEYS, and make ‘StudentID’ a FOREIGN KEY on the Students_Classes table. USE Cameron_CTU
  • 12. CREATE TABLE Students (StudentID INT IDENTITY PRIMARY KEY NOT NULL, FirstName VARCHAR(35) NOT NULL, LastName VARCHAR(30) NOT NULL, BirthDate DATE NOT NULL, Gender CHAR(1) NOT NULL, StartDate DATE, GPA DECIMAL(4,2), IsActive CHAR(3) NOT NULL, Bio VARCHAR(3000), AdvisorID [int], DegreeID [int] NOT NULL, ) ALTER TABLE Students ADD FOREIGN KEY (AdvisorID) REFERENCES Advisors ([AdvisorID]) GO ALTER TABLE Students ADD FOREIGN KEY ([DegreeID]) REFERENCES Degrees ([DegreeID]) GO ALTER TABLE Students_Classes ADD FOREIGN KEY (StudentID) REFERENCES Students(StudentID) Once the relationships have been established, the ERD can be created New DML script to add required constraints for GPA, Gender, and Assignments1 – Assignments4 USE Cameron_CTU ALTER TABLE Students
  • 13. ADD CONSTRAINT chkGPA CHECK (GPA BETWEEN 0.00 and 4.00); ALTER TABLE Students ADD CONSTRAINT chkGender CHECK (Gender IN ('M', 'F')); ALTER TABLE Students_Classes ADD CONSTRAINT chkAssignment1 CHECK (Assignment1 BETWEEN 0 AND 100); ALTER TABLE Students_Classes ADD CONSTRAINT chkAssignment2 CHECK (Assignment2 BETWEEN 0 AND 100); ALTER TABLE Students_Classes ADD CONSTRAINT chkAssignment3 CHECK (Assignment3 BETWEEN 0 AND 100); ALTER TABLE Students_Classes ADD CONSTRAINT chkAssignment4 CHECK (Assignment4 BETWEEN 0 AND 100);
  • 14. This section contains screenshots of the query windows once the code was executed successfully.Screenshots: Create Database: Create Students Table with FOREIGN KEYS: Create Advisors Table: Create Classes Table: Create Students_Classes Table: Alter [Students_Classes] & [Students] Tables to assign Foreign Keys to them, which are PRIMARY KEYS on the referenced
  • 15. tables. Once the relationships have been established, the ERD can be created New DML script to add required constraints for GPA, Gender, and Assignments1 – Assignments4 New Database Diagram: ERD Phase 2 – Security and DML Carrying on from Phase 1 undertakings of making our college database, with the four tables of Students, Advisors, Classes, and Students_Classes, Phase 2 calls for information to be embedded, erased, and refreshed. The INSERT articulation has two approaches to enter. The positional embed embeds requested esteems into another line in a similar request of the table segments. A named-section embed names the correct segment where each esteem's embedded into another line. Its great practice to utilize a named-segment embed, which permits your SQL code to work if the table's sections are reordered or another segment is included. You would utilize INSERT VALUES to determine segment esteems, and INSERT SELECT to embed columns from another table. Some DBMS don't make it obligatory to utilize the INTO watchword after the INSERT articulation; be that as it may, you ought to utilize it for its transportability abilities. (Fehily, 2008) The UPDATE explanation is utilized to change esteems in a table's current columns. You should be extremely careful when utilizing the refresh explanation on the grounds that on the off chance that you neglect to include the "WHERE" statement, you will refresh all lines rather than simply your objective columns. Keep in mind that each refreshed esteem needs to have similar information sort or be absolutely convertible to an indistinguishable sort from its segment. (Fehily, 2008) The DELETE explanation is somewhat more capable in light of
  • 16. the fact that it’s used to erase a whole line, not just a segment or sections. You can erase only one or all columns of a table, so be mindful of the erase explanation moreover. Without the WHERE proviso, every single table column will be erased. (Fehily, 2008) Task 1 The first task was to insert data into four rows of the Classes table. The following SQL code is what I used to accomplish the task, followed by the screenshot of the query being executed successfully. INSERT INTO [Cameron_CTU].[DBO].[Classes] ( [ClassCode], [ClassName], [Description] ) VALUES ( 'ACCT306', 'Accounting 1', 'This course introduces accounting concepts and explores the accounting environment. It covers the basic structure of accounting, how to maintain accounts, use account balances to prepare financial statements, and complete the accounting cycle. It also introduces the concept of internal control and how to account for assets.' ), ( 'CS362', 'Structured Query Language for Data Management', 'This course gives complete coverage of SQL, with an emphasis on storage, retrieval, and manipulation of data.' ), ( 'ENGL115', 'English Composition', 'In this course, students focus on developing writing skills through practice and revision. Students will examine expository, critical, and persuasive essay techniques.' ), ( 'FIN322', 'Investments', 'This course focuses on investments and investment strategies. Various investment vehicles such as stocks, bonds, and commodities are examined. Students
  • 17. will explore the principles of security analysis and valuation.' ) (Fehily, 2008) Task 2 The second task was to insert data into three rows of the Advisors table. The following SQL code is what I used to accomplish the task, followed by the screenshot of the query being executed successfully. INSERT INTO [dbo].[Advisors] ( [FirstName], [LastName], [EmailAddr] ) VALUES ( 'Fred', 'Stone', '[email protected]' ), ( 'Bob', 'Gordon', '[email protected]' ), ( 'Jack', 'Simpson', '[email protected]') (Fehily, 2008) Task 3 The third task was to insert data into four rows of the Students table. The following SQL code is what I used to accomplish the task, followed by the screenshot of the query being executed successfully. INSERT INTO [dbo].[Students] ( [FirstName], [LastName], [BirthDate], [Gender], [StartDate], [GPA], [IsActive], [Bio], [AdvisorID] ) VALUES ( 'Craig', 'Franklin', '1970-03-15', 'm', '2010-05-30', 3.10, 'Yes', '', 3 ),
  • 18. ( 'Harriet', 'Smith', '1982-04-15', 'f', '2010-05-30', 3.22, 'Yes', '', 1 ), ( 'George', 'David', '1984-11-05', 'm', '2010-10-01', 0.00, 'Yes', '', 3 ), ( 'Ben', 'Jefferson', '1976-09-25', 'm', '2009-02-21', 1.80, 'No', 'The student has gone on temporary leave to pursue other opportunities but plans on returning in 1 year.', 3 ) (Fehily, 2008)Task 4 The fourth task was to delete the course named Investments from the system, and the following SQL code is what I used to accomplish the task, followed by the screenshot of the query being executed successfully. DELETE FROM Classes WHERE ClassID = 'FIN322'; (Fehily, 2008) Task 5 The fifth and final task called for changing 2 columns in a row on the Students table, and the following SQL code is what I used to accomplish the task, followed by the screenshot of the query being executed successfully. UPDATE Students SET BirthDate = '1982-04-25', GPA = 3.25 WHERE StudentID = '2'; (Fehily, 2008) Phase 3 - DML (Select) and Procedures Stage 3 has seven errands that call for recovering information utilizing the SELECT and FROM Statements. The SELECT condition calls for which section or segments to show, and the FROM proviso distinguishes the table or tables the
  • 19. segments have a place with. You can likewise utilize the AS statement with a specific end goal to make segment assumed names, which I'll go over in the last couple of errands. You can likewise sort columns with the ORDER BY condition, which I'll additionally hit on in the assignments. The WHERE provision channels undesirable columns. Without it, you result would be each column on your questioned table. Some other proclamation conditions incorporate AND, OR, ORDER BY GROUP BY, JOIN. There are two sorts of JOIN provisos. They are Implicit and express. Certain is utilized a considerable measure, and you may not understand your utilizing it because there is no genuine JOIN proviso with JOIN in it; its suggested when you're questioning more than one table. Let’s begin with the assignments now, might we? (Fehily, 2008) The main thing will do is fix my SQL proclamation in the Phase 2 segment, Task 5. I settled it by utilizing StudentID in the SELECT proviso. Task 1 The first task calls for a list of all active male students assigned to Advisors 1 or 3. So, we want to query the Advisor. Advisor ID, FirstName and LastName columns along with the Students. AdvisorID, FirstName, LastName, Birthdate, Gender, and GPA columns of the Students and Advisors tables. We use an implicit JOIN with the WHERE clause to JOIN the two tables of Student. AdvisorID and Advisor. AdvisorID together. Below, you’ll find the SQL Statement I used to retrieve the required data, and screenshot that shows a successful query. SELECT Gender, IsActive, AdvisorID FROM Cameron_CTU.dbo.Students WHERE Gender = 'm'
  • 20. AND IsActive = 'yes' AND AdvisorID IN (1,3) Task 2 The second task asks for a list of students without a biography. Here’s the SQL Statement I used, and screenshot that shows a successful query. Task 3 Task 3 is a very simple statement asking what classes are in the English Department. This SQL statement involves a wild card just after the L in the word “English”. The SQL statement and its associated screenshot are below. SELECT ClassCode, ClassName FROM Cameron_CTU.dbo.Classes WHERE ClassName LIKE 'ENGL%' Task 4 Task 4 calls for a list of all students and their advisors, and sorted by Advisors, and a few columns from the Students table SELECT A.AdvisorID, A.FirstName, A.LastName, S.AdvisorID, S.FirstName, S.LastName,BirthDate, Gender, GPA FROM Cameron_CTU.dbo.Students S, Cameron_CTU.dbo.Advisors A WHERE S.AdvisorID = A.AdvisorID ORDER BY A.LastName, S.LastName ASC; SELECT A.CustomerID, A.FirstName, A.LastName, S.AdvisorID, S.FirstName, S.LastName,BirthDate, Gender,
  • 21. GPA FROM Cameron_CTU.dbo.Students S, Cameron_CTU.dbo.Advisors A WHERE S.AdvisorID = A.AdvisorID ORDER BY A.LastName, S.LastName ASC; Task 5 The fifth task calls for the number of students born in the 80s. Below, you’ll find the SQL Statement I used to retrieve the required data, and screenshot that shows a successful query. SELECT COUNT (StudentID) as Students_born_in_the_80s FROM Cameron_CTU.dbo.Students WHERE BirthDate between '1980-01-1' AND '1989-12-31'; Task 6 Task 6 wanted to know the average GPA score sorted by men and women. Here is the SQL code and screenshot. Task 7 Task 7 is looking for all the advisors with only 1 student. Here’s the SQL code and screenshot. SELECT A.firstname, A.LastName, COUNT (A.AdvisorID) AS Total_Active_Students FROM Cameron_CTU.dbo.Students S, Cameron_CTU.dbo.Advisors A WHERE A.AdvisorID = S.AdvisorID AND S.IsActive = 'yes' GROUP BY A.FirstName, A.LastName HAVING COUNT (S.StudentID) = '1'; Phase 4 – Architecture, Indexes Stage 4 requires an approach to track classes required for degrees, and which degree understudies are seeking after. We were given the errand of making a table for following degrees
  • 22. with Degree Name and Degree Description. Nonetheless, the most ideal approach to track the classes required for degrees is to make a table named "Degrees" with sections marked 'DegreeID', 'Degree Name' and 'Degree Description', and 'Degree Code'. Additionally, adding a segment to the "Classes" table, named DegreeID will help connect the "Degrees" and "Classes" tables. After the tables have been made, I'll have to test the engineering to guarantee it can render the outcomes I'm searching for in questions. (Fehily, 2008) Be that as it may, I simply got my review for my Phase 1 IP with distinguished mistakes. See Phase 1 area for settled mistakes. The blunders that need rectified are: - Considerations with respect to my information sorts and field lengths: FirstName and LastName too long Fix imperatives for assignments 1 through 4 to guarantee just 0-100 can be information. - Fix GPA Constraint to guarantee contribution of just 0.00 – 4.00, and allow just 3 add up to digits after decimal. - Constrain "Sex" to either M or F, and IsActive to either Yes or No.Step 1: CREATE TABLE [Degrees] I’ll start by creating the table, ‘Degrees’ with the following DDL script, followed by a screenshot of the query being completed successfully, and the table structure that displays the table columns to include the PRIMARY KEY, ‘DergeeID’. USE [Cameron_CTU] GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[Degrees] (
  • 23. [DegreeID] [int] IDENTITY(1,1) PRIMARY KEY NOT NULL, [DegreeName] [varchar](50) NOT NULL, [DegreeDescription] [varchar](1000) NOT NULL, [DegreeCode] [varchar](50) NOT NULL, ) Step 2: Re-create ‘Classes’ TABLE to add ‘DegreeID’ column and INSERT 6 classes The next step is to delete and re-create the ‘Classes’ table, and ensure that the ‘DegreeID’ column is included in the creation, and made a FOREIGN KEY. Also, ensure you re- insert the original 3 classes, and add 3 new classes into the ‘Classes’ table required by different degrees. And since you’ve re-created the ‘Classes’ table with ‘DegreeID’ as a FOREIGN KEY, make sure you add it to the INSERT INTO DDL script or you’ll receive an error regarding the ‘DegreeID’ column. Below are the following DDL scripts, followed by a screenshot of the queries being completed successfully, and the table structure that displays the table columns with ‘DegreeID’ as a FOREIGN KEY, and the query results of the SELECT * FROM Classes query. USE [Cameron_CTU] GO
  • 24. SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Classes] ( [ClassID] [int] IDENTITY(1,1) PRIMARY KEY NOT NULL, [DegreeID] [int] NOT NULL, [ClassCode] [varchar](50) NOT NULL, [ClassName] [varchar](100) NOT NULL, [Description] [varchar](1000) NOT NULL, ) ALTER TABLE [dbo].[Classes] ADD FOREIGN KEY([DegreeID]) REFERENCES [dbo].[Degrees]([DegreeID]) GO INSERT INTO [Cameron_CTU].[DBO].[Classes] ( [DegreeID], [ClassCode], [ClassName], [Description] ) VALUES ( '4', 'ACCT306', 'Accounting 1', 'This course introduces accounting concepts and explores the accounting environment. It covers the basic structure of accounting, how to maintain accounts, use account balances to prepare financial statements, and complete the accounting cycle. It also introduces the concept of internal control and how to account for assets.' ),
  • 25. ( '5', 'CS362', 'Structured Query Language for Data Management', 'This course gives complete coverage of SQL, with an emphasis on storage, retrieval, and manipulation of data.' ), ( '3', 'ENGL115', 'English Composition', 'In this course, students focus on developing writing skills through practice and revision. Students will examine expository, critical, and persuasive essay techniques.' ), ( '3', 'BHVS205', 'Managerial Psychology', 'This course introduces Psyhology concepts that will serve as the foundation to other concepts, such as Motivation and Emotion and Interpersonal Communications and Dynamics.' ), ( '4', 'CSS150', 'Introduction to Computer Security', 'This course covers Computer Security Principles, such as Policy letters, Remote Logins, and Network Security.' ), ( '5', 'CS126', 'UNIX Fundamentals', 'This course teaches you thed origins of the UNIX Operating System, and teaches you how to build directories.' ) Step 3: ALTER TABLE [Students] As the paragraph title implies, the next step is to add the ‘DegreeID’ column to the ‘Students’ table, and make it a FOREIGN KEY. Below is the following DDL script used to add the column, and make it a FOREIGN KEY, and the screenshot of the successful command. USE [Cameron_CTU] GO
  • 26. ALTER TABLE Students ADD DegreeID [int] NOT NULL GO ALTER TABLE Students ADD FOREIGN KEY (DegreeID) REFERENCES Degrees(DegreeID) Step 4: DML script to insert 3 test records in [Degrees] The next step is to insert degree data into the ‘Degrees’ table. Below is the DML script used, and a screenshot of the successful command along with an inset of the results for a SELECT * FROM Degrees statement. INSERT INTO [Cameron_CTU].[DBO].[Degrees] ( [DegreeCode], [DegreeName], [DegreeDescription] ) VALUES ( 'BSIP', 'Bachelor of Science in Psychology', 'The Bachelor’s degree in General Psychology is designed to prepare students to successfully navigate in the 21st century workplace, in a variety of careers that focus on the business of people, including but not limited to work in management, administration, research, and sales. It is positioned to provide an overview of the major psychological concepts, perspectives, and skills that explain human behavior. ' ), ( 'BSIS', 'Bachelor of Science in Information Security', 'The Bachelors of Science in Information Assurance and Security degree allows undergraduate learners to acquire and apply various processes, tools, technologies, and methods of securing an enterprise; including security policies, social engineering, access control, authentication, perimeter security, disaster recovery and business continuity, risk management, incident response, viruses, malware, spam, encryption, and other infrastructure security techniques that include governance and strategic alignment of IT and business. ' ),
  • 27. ( 'BSIT', 'Bachelor of Science in Information Technology', 'The Bachelor of Science in Information Technology (BSIT) curriculum includes both a common core, as well as specialization-specific courses. The BSIT core provides a strong foundation in the key information technology areas of programming, systems administration, security, architecture, databases, and ethics.' ) Step 5: DML script to INSERT INTO the ‘Students’ table ‘DegreeID’ data The next step is to add the ‘DegreeID’ to 4 records applicable to each of the 4 students. Below is the DML script used to execute the command and a screenshot showing it was successful. INSERT INTO [Cameron_CTU].[dbo].[Students] ( [FirstName], [LastName], [BirthDate], [Gender], [StartDate], [GPA], [IsActive], [Bio], [AdvisorID], [DegreeID] ) VALUES ( 'Craig', 'Franklin', '1970-03-15', 'm', '2010-05-30', 3.10, 'Yes', NULL, 3, 3 ), ( 'Harriet', 'Smith', '1982-04-15', 'f', '2010-05-30', 3.22, 'Yes', NULL, 1, 4 ), ( 'George', 'David', '1984-11-05', 'm', '2010-10-01', 0.00, 'Yes', NULL, 3, 5 ), ( 'Ben', 'Jefferson', '1976-09-25', 'm', '2009-02-21', 1.80, 'No', 'The student has gone on temporary leave to pursue other opportunities but plans on returning in 1 year.', 3, 3 )
  • 28. The last step is to execute a SELECT statement with an implicit JOIN clause to show what degree each student is pursuing. USE Cameron_CTU SELECT FirstName, LastName, Students.DegreeID, Degrees.DegreeName FROM Cameron_CTU.dbo.Students, Cameron_CTU.dbo.Degrees WHERE Students.DegreeID = Degrees.DegreeID; Step 6: Display ERD References Fehily, C. (2008) Visual QuickStart Guide SQL, Third Edition, [CourseSmart e-Book reader version] Retrieved from http://wow.coursesmart.com/9781256745129/firstsection