SlideShare a Scribd company logo
1 of 21
DEVRY CIS 336 Week 1 iLab 1 NEW
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-devry/cis-336-
week-1-ilab-1
For more classes visit
http://www.uopassignments.com/
DEVRY CIS 336 Week 2 iLab 2 NEW
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-devry/cis-336-
week-2-ilab-2
For more classes visit
http://www.uopassignments.com/
DEVRY CIS 336 Week 3 Group Project Task 1 Data
Model
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-3-group-project-task-1-
data-model
For more classes visit
http://www.uopassignments.com/
Present a detailed data model for the project
scenario. You can create your data model using
Microsoft Visio, which you will have access to
through iLab and Microsoft Excel, which comes
with Microsoft Office. Other tools may be used as
long as the output is legible and conforms to
standard format. (i.e. I will not be able to grade the
data model if I cannot tell what it is supposed to
be!). Your data model should include a minimum
of an ERD and metadata chart (data dictionary).
A key component to every task submission is the
team responsibilities document. This document
should outline the contributions that each
member of the team made to completing the task
deliverable. There is a sample document in the Doc
Sharing tab that can be used, or each team can
come up with their own design. As stated in the
syllabus, although this is a team project, each
member will also be graded on their involvement
in the project. This assessment needs to be honest
and accurate in describing the individual
members’ activities for the task.
Deliverables for this task:
A completed Data Model to include: An ERD,
showing all tables, related attributes, and the
primary and foreign keys. This diagram must show
both the relationship and cardinality of the
relationship using accepted notation. A Data
Dictionary (or meta data chart) showing a
minimum of the table name, columns, data types,
length, and constraints. Team member
responsibilities document outlining contributions
by team members to this deliverable.
DEVRY CIS 336 Week 3 iLab 3
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-3-ilab-3
For more classes visit
http://www.uopassignments.com/
CIS 336 Week 3 iLab 3
DEVRY CIS 336 Week 4 Group Project Task 2
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-4-group-project-task-2
For more classes visit
http://www.uopassignments.com/
Using the Oracle SQL*Plus editor, develop a
database for MiniQuest based on your data model.
The database should contain all the tables and
attributes discussed in the project specifications.
Be sure to use your data dictionary when creating
your tables.
A key component to every task submission is the
team responsibilities document. This document
should outline the contributions that each
member of the team made to completing the task
deliverable. To submit this task, you need to create
a file in notepad called TEAM_X_TASK2.TXT, where
X is your team identifier. For example, Team A
would name the file TEAM_A_TASK2.TXT. In this
file, create a heading called CREATE STATEMENTS,
and then develop the CREATE TABLE statements
required to create your database tables. Be sure to
include the DROP TABLE statements at the top of
your file so that you can reuse the file. If you
include the wording CASCADE CONSTRAINTS as
part of each DROP TABLE statement, then the
order of the DROP statements will not mater. For
example, to drop a table named customer, you
would state:
DROP TABLE CUSTOMER CASCADE CONSTRAINTS
PURGE;
After testing and verifying that all of your create
statements work, create a spooled output file with
the SET ECHO ON session command set so that
your code and the results will show.
Deliverables for this task:
Revisions of Task 1 (if any) based on feedback
from your instructor. Task 2 comprised of the
CREATE TABLE script file and the output file
showing that it works. Team member
responsibilities document outlining contributions
by team members to this deliverable.
DEVRY CIS 336 Week 4 iLab 4
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-4-ilab-4
For more classes visit
http://www.uopassignments.com/
CIS 336 Week 4 iLab 4
DEVRY CIS 336 Week 5 Group Project Task 3
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-5-group-project-task-3
For more classes visit
http://www.uopassignments.com/
Develop the SQL statements to insert records into
the database. You should ensure that the data in
the database is sufficient to allow for each of the
reports requested by Ms. Smith to be tested. You
need to show a minimum of three insert queries
for each database table that you have created.
Some tables will obviously require more to ensure
that all of the required data is in the database (i.e.,
the packages table, program table, etc). To submit
this task, add a comment heading called INSERT
STATEMENTS to your corrected SQL script from
Task 2. Add your INSERT statements for each table
after this heading. Keep in mind that you will need
to insert data into the tables in the same order that
the tables were created. This will minimize any
integrity constraint errors you might encounter.
Keep in mind also that any values being inserted
into a field defined as a foreign key field must first
exist in a previous table’s primary key field. Save
the file as TEAM_X_TASK3.TXT, where X is your
team identifier. After testing your statements to
verify that your data will insert into your tables,
create a spooled output file with the SET ECHO ON
session command set for submitting.
Note – Although you are only required to have
three records per table in most of your tables for
this deliverable, you will need a considerable
amount of data in your tables for the final project.
After testing and verifying that all of your create
statements work, create a spooled output file with
the SET ECHO ON session command set so that
your code and the results will show.
Deliverables for this task:
Any revisions of task 2 based on feedback from
your instructor. Task 3 comprised of the script file
containing DROP TABLE, CREATE TABLE, and
INSERT statements, and the output file showing
that it works. Team member responsibilities
document outlining contributions by team
members to this deliverable.
DEVRY CIS 336 Week 5 iLab 5
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-5-ilab-5
For more classes visit
http://www.uopassignments.com/
CIS 336 Week 5 iLab 5
DEVRY CIS 336 Week 6 Group Project Task 4
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-6-group-project-task-4
For more classes visit
http://www.uopassignments.com/
Develop a query that will identify and mark
inactive those customers that have bills overdue
by more than 30 days (this can usually be done
using a sub-query). Remember, you are only
marking a customer as inactive, not actually
deleting the customer record from the system.
To submit this task, create a heading called
MODIFY STATEMENTS in your group project SQL
script, and name the file TEAM_X_TASK4.TXT. This
should be the same script that contains your DROP
TABLE, CREATE TABLE, and INSERT statements.
Once you have verified that your SQL statement or
statements work, create a spooled output showing
the results of your statements.
Deliverables for this task:
Any revisions of task 3 based on feedback from
your instructor. Task 4 comprised of the complete
script file (DROP, CREATE, INSERT, SELECT, and
UPDATE statements) and the output file showing
that it works. Team member responsibilities
document outlining contributions by team
member to this deliverable.
DEVRY CIS 336 Week 6 iLab 6
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-6-ilab-6
For more classes visit
http://www.uopassignments.com/
CIS 336 Week 6 iLab 6
DEVRY CIS 336 Week 7 Group Project Task 5
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-7-group-project-task-5
For more classes visit
http://www.uopassignments.com/
Develop the queries to support each of the reports
that are required by Ms. Smith. It is expected that
the information returned by the queries is
adequate to be used in the reporting process.
Make sure your output contains enough
information! The following is a recommendation
and the MINIMUM amount of data you should have
access to:
Customer Table: A minimum of 12 customers (this
will allow several channels to have more than one
customer selecting it as a favorite channel) Billing
Table: Records to support the above customers
Program Table: A minimum of 25 programs (your
program guide should have enough programs for
various channels to support the program guide
report) Other tables: A sufficient amount of data to
support the above when reports are run.
Create a heading of REPORTING STATEMENTS as a
comment at the bottom of your group project
database script file. Add the six report queries to
this area. In instances where you are asked to
allow for user input, please specify an appropriate
value based upon the data in your script. For
example, Report 1 is a DATE driven report;
therefore, you should use a single date in your
WHERE clause to display the information. Task 5 is
the final task for the project and is designed to
demonstrate that you have adequately satisfied
the requirements of the project. The following is
what you are to submit for Task 5:
Report 1 – A list of the programs on all channels
for a specific day showing the channel number,
supplier, package, program name, rating code, and
show time. This will be similar to a program guide,
only not package specific. This is a date-driven
report, therefore it should only display programs
for a single date specified.
Report 2 – A sample program guide showing the
channel number, show time, program name, and
rating description. For the purposes of this project,
your report should be package ID specific (based
on a given package ID) and you only need to
demonstrate a single package ID. Your report
should include all channels associated with the
specified package.
Report 3 – A list of all new customers signed up on
a specific day. This should show enough details
about the customer, including favorite channel,
address, and minimal billing details. This report is
to be date driven, so you will need to specify a date
in your query.
Report 4 – A list of all the customers made inactive
on a specific date. This should show enough details
about the customer to allow contact with the
customer, the reason he or she was made inactive,
and the user who made them inactive. Again, keep
in mind that this is a date driven report.
Report 5 – A list of each channel (both channel
name and channel number) and a count of the
number of customers who picked that channel as a
favorite channel.
Report 6 – A summary of sales for any given day,
categorized by package type (i.e., the total sales
written on the specified day for each package
subscribed to by customers, not bills paid). This
report should give details about each package
type, the package price, the number of packages
sold, and then the total sales amount for that
package. Once again, remember that this is going
to be a date driven report.
DEVRY CIS 336 Week 7 iLab 7
Check this A+ tutorial guideline at
http://www.uopassignments.com/cis-336-
devry/cis-336-week-7-ilab-7
For more classes visit
http://www.uopassignments.com/
CIS 336 Week 7 iLab 7

More Related Content

Similar to CIS 336 (DEVRY) Entire Course NEW

CIS 336 STUDY Introduction Education--cis336study.com
CIS 336 STUDY Introduction Education--cis336study.comCIS 336 STUDY Introduction Education--cis336study.com
CIS 336 STUDY Introduction Education--cis336study.comclaric262
 
Cis336 week 7 i lab 7
Cis336 week 7 i lab 7Cis336 week 7 i lab 7
Cis336 week 7 i lab 7CIS339
 
CIS 336 Education Planning--cis336.com
CIS 336 Education Planning--cis336.comCIS 336 Education Planning--cis336.com
CIS 336 Education Planning--cis336.comWindyMiller44
 
Strayer cis-499-week-5-project-deliverable-3-database-and-data-warehousing-de...
Strayer cis-499-week-5-project-deliverable-3-database-and-data-warehousing-de...Strayer cis-499-week-5-project-deliverable-3-database-and-data-warehousing-de...
Strayer cis-499-week-5-project-deliverable-3-database-and-data-warehousing-de...infinityend3
 
Optimizing Data Accessin Sq Lserver2005
Optimizing Data Accessin Sq Lserver2005Optimizing Data Accessin Sq Lserver2005
Optimizing Data Accessin Sq Lserver2005rainynovember12
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comULLPTT
 
Strayer cis-515-week-7-assignment-6-sql-concepts-and-database-design
Strayer cis-515-week-7-assignment-6-sql-concepts-and-database-designStrayer cis-515-week-7-assignment-6-sql-concepts-and-database-design
Strayer cis-515-week-7-assignment-6-sql-concepts-and-database-designkxipvscsk02
 
Nota database object query
Nota database object queryNota database object query
Nota database object queryAzmiah Mahmud
 
DSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BI
DSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BI
DSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIEzekielJames8
 
CIS 510 Inspiring Innovation/tutorialrank.com
 CIS 510 Inspiring Innovation/tutorialrank.com CIS 510 Inspiring Innovation/tutorialrank.com
CIS 510 Inspiring Innovation/tutorialrank.comjonhson113
 
CIS 510 RANK Lessons in Excellence--cis510rank.com
CIS 510 RANK Lessons in Excellence--cis510rank.comCIS 510 RANK Lessons in Excellence--cis510rank.com
CIS 510 RANK Lessons in Excellence--cis510rank.comRoelofMerwe141
 
CIS 510 RANK Inspiring Innovation--cis510rank.com
CIS 510 RANK Inspiring Innovation--cis510rank.comCIS 510 RANK Inspiring Innovation--cis510rank.com
CIS 510 RANK Inspiring Innovation--cis510rank.comKeatonJennings92
 
Lab #9 and 10 Web Server ProgrammingCreate a New Folder I s.docx
Lab #9 and 10 Web Server ProgrammingCreate a New Folder  I s.docxLab #9 and 10 Web Server ProgrammingCreate a New Folder  I s.docx
Lab #9 and 10 Web Server ProgrammingCreate a New Folder I s.docxDIPESH30
 
CIS 510 RANK Education Planning--cis510rank.com
CIS 510 RANK Education Planning--cis510rank.comCIS 510 RANK Education Planning--cis510rank.com
CIS 510 RANK Education Planning--cis510rank.comShivendrasing
 
CASE STUDY InternetExcel Exercises, page 434, textRecord your.docx
CASE STUDY InternetExcel Exercises, page 434, textRecord your.docxCASE STUDY InternetExcel Exercises, page 434, textRecord your.docx
CASE STUDY InternetExcel Exercises, page 434, textRecord your.docxketurahhazelhurst
 
CIS 336 STUDY Education Planning--cis336study.com
CIS 336 STUDY Education Planning--cis336study.comCIS 336 STUDY Education Planning--cis336study.com
CIS 336 STUDY Education Planning--cis336study.comagathachristie299
 
BIS 245 OUTLET Introduction Education--bis245outlet.com
BIS 245 OUTLET Introduction Education--bis245outlet.comBIS 245 OUTLET Introduction Education--bis245outlet.com
BIS 245 OUTLET Introduction Education--bis245outlet.comagathachristie291
 
BIS 245 OUTLET Inspiring Innovation--bis245outlet.com
 BIS 245 OUTLET Inspiring Innovation--bis245outlet.com BIS 245 OUTLET Inspiring Innovation--bis245outlet.com
BIS 245 OUTLET Inspiring Innovation--bis245outlet.comwilliamwordsworth45
 

Similar to CIS 336 (DEVRY) Entire Course NEW (20)

CIS 336 STUDY Introduction Education--cis336study.com
CIS 336 STUDY Introduction Education--cis336study.comCIS 336 STUDY Introduction Education--cis336study.com
CIS 336 STUDY Introduction Education--cis336study.com
 
Cis336 week 7 i lab 7
Cis336 week 7 i lab 7Cis336 week 7 i lab 7
Cis336 week 7 i lab 7
 
CIS 336 Education Planning--cis336.com
CIS 336 Education Planning--cis336.comCIS 336 Education Planning--cis336.com
CIS 336 Education Planning--cis336.com
 
Strayer cis-499-week-5-project-deliverable-3-database-and-data-warehousing-de...
Strayer cis-499-week-5-project-deliverable-3-database-and-data-warehousing-de...Strayer cis-499-week-5-project-deliverable-3-database-and-data-warehousing-de...
Strayer cis-499-week-5-project-deliverable-3-database-and-data-warehousing-de...
 
Optimizing Data Accessin Sq Lserver2005
Optimizing Data Accessin Sq Lserver2005Optimizing Data Accessin Sq Lserver2005
Optimizing Data Accessin Sq Lserver2005
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
 
Strayer cis-515-week-7-assignment-6-sql-concepts-and-database-design
Strayer cis-515-week-7-assignment-6-sql-concepts-and-database-designStrayer cis-515-week-7-assignment-6-sql-concepts-and-database-design
Strayer cis-515-week-7-assignment-6-sql-concepts-and-database-design
 
Nota database object query
Nota database object queryNota database object query
Nota database object query
 
Notacd12
Notacd12Notacd12
Notacd12
 
DSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BI
DSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BI
DSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BIDSN_Power BI
 
CIS 510 Inspiring Innovation/tutorialrank.com
 CIS 510 Inspiring Innovation/tutorialrank.com CIS 510 Inspiring Innovation/tutorialrank.com
CIS 510 Inspiring Innovation/tutorialrank.com
 
Notacd12
Notacd12Notacd12
Notacd12
 
CIS 510 RANK Lessons in Excellence--cis510rank.com
CIS 510 RANK Lessons in Excellence--cis510rank.comCIS 510 RANK Lessons in Excellence--cis510rank.com
CIS 510 RANK Lessons in Excellence--cis510rank.com
 
CIS 510 RANK Inspiring Innovation--cis510rank.com
CIS 510 RANK Inspiring Innovation--cis510rank.comCIS 510 RANK Inspiring Innovation--cis510rank.com
CIS 510 RANK Inspiring Innovation--cis510rank.com
 
Lab #9 and 10 Web Server ProgrammingCreate a New Folder I s.docx
Lab #9 and 10 Web Server ProgrammingCreate a New Folder  I s.docxLab #9 and 10 Web Server ProgrammingCreate a New Folder  I s.docx
Lab #9 and 10 Web Server ProgrammingCreate a New Folder I s.docx
 
CIS 510 RANK Education Planning--cis510rank.com
CIS 510 RANK Education Planning--cis510rank.comCIS 510 RANK Education Planning--cis510rank.com
CIS 510 RANK Education Planning--cis510rank.com
 
CASE STUDY InternetExcel Exercises, page 434, textRecord your.docx
CASE STUDY InternetExcel Exercises, page 434, textRecord your.docxCASE STUDY InternetExcel Exercises, page 434, textRecord your.docx
CASE STUDY InternetExcel Exercises, page 434, textRecord your.docx
 
CIS 336 STUDY Education Planning--cis336study.com
CIS 336 STUDY Education Planning--cis336study.comCIS 336 STUDY Education Planning--cis336study.com
CIS 336 STUDY Education Planning--cis336study.com
 
BIS 245 OUTLET Introduction Education--bis245outlet.com
BIS 245 OUTLET Introduction Education--bis245outlet.comBIS 245 OUTLET Introduction Education--bis245outlet.com
BIS 245 OUTLET Introduction Education--bis245outlet.com
 
BIS 245 OUTLET Inspiring Innovation--bis245outlet.com
 BIS 245 OUTLET Inspiring Innovation--bis245outlet.com BIS 245 OUTLET Inspiring Innovation--bis245outlet.com
BIS 245 OUTLET Inspiring Innovation--bis245outlet.com
 

More from shyamuopuop

COM 295 Entire Course NEW
COM 295 Entire Course NEWCOM 295 Entire Course NEW
COM 295 Entire Course NEWshyamuopuop
 
COM 285 Entire Course NEW
COM 285 Entire Course NEWCOM 285 Entire Course NEW
COM 285 Entire Course NEWshyamuopuop
 
COM 220 Entire Course NEW
COM 220 Entire Course NEWCOM 220 Entire Course NEW
COM 220 Entire Course NEWshyamuopuop
 
COM 106 Entire Course NEW
COM 106 Entire Course NEWCOM 106 Entire Course NEW
COM 106 Entire Course NEWshyamuopuop
 
COM 200 UOP Entire Course NEW
COM 200 UOP Entire Course NEWCOM 200 UOP Entire Course NEW
COM 200 UOP Entire Course NEWshyamuopuop
 
BUS 668 Entire Course NEW
BUS 668 Entire Course NEWBUS 668 Entire Course NEW
BUS 668 Entire Course NEWshyamuopuop
 
BUS 650 Entire Course NEW
BUS 650 Entire Course NEWBUS 650 Entire Course NEW
BUS 650 Entire Course NEWshyamuopuop
 
BUS 644 Entire Course NEW
BUS 644 Entire Course NEWBUS 644 Entire Course NEW
BUS 644 Entire Course NEWshyamuopuop
 
CMIS 102 Entire Course NEW
CMIS 102 Entire Course NEWCMIS 102 Entire Course NEW
CMIS 102 Entire Course NEWshyamuopuop
 
CMGT 582 Entire Course NEW
CMGT 582 Entire Course NEWCMGT 582 Entire Course NEW
CMGT 582 Entire Course NEWshyamuopuop
 
CMGT 556 Entire Course NEW
CMGT 556 Entire Course NEWCMGT 556 Entire Course NEW
CMGT 556 Entire Course NEWshyamuopuop
 
CMGT 557 Entire Course NEW
CMGT 557 Entire Course NEWCMGT 557 Entire Course NEW
CMGT 557 Entire Course NEWshyamuopuop
 
CMGT 554 Entire Course NEW
CMGT 554 Entire Course NEWCMGT 554 Entire Course NEW
CMGT 554 Entire Course NEWshyamuopuop
 
CMGT 445 Entire Course NEW
CMGT 445 Entire Course NEWCMGT 445 Entire Course NEW
CMGT 445 Entire Course NEWshyamuopuop
 
CMGT 442 Entire Course NEW
CMGT 442 Entire Course NEWCMGT 442 Entire Course NEW
CMGT 442 Entire Course NEWshyamuopuop
 
CMGT 433 Entire Course NEW
CMGT 433 Entire Course NEWCMGT 433 Entire Course NEW
CMGT 433 Entire Course NEWshyamuopuop
 
CIS 401 Entire Course NEW
CIS 401 Entire Course NEWCIS 401 Entire Course NEW
CIS 401 Entire Course NEWshyamuopuop
 
CIS 375 Entire Course NEW
CIS 375 Entire Course NEWCIS 375 Entire Course NEW
CIS 375 Entire Course NEWshyamuopuop
 
CIS 349 Entire Course NEW
CIS 349 Entire Course NEWCIS 349 Entire Course NEW
CIS 349 Entire Course NEWshyamuopuop
 
CIS 348 Entire Course NEW
CIS 348 Entire Course NEWCIS 348 Entire Course NEW
CIS 348 Entire Course NEWshyamuopuop
 

More from shyamuopuop (20)

COM 295 Entire Course NEW
COM 295 Entire Course NEWCOM 295 Entire Course NEW
COM 295 Entire Course NEW
 
COM 285 Entire Course NEW
COM 285 Entire Course NEWCOM 285 Entire Course NEW
COM 285 Entire Course NEW
 
COM 220 Entire Course NEW
COM 220 Entire Course NEWCOM 220 Entire Course NEW
COM 220 Entire Course NEW
 
COM 106 Entire Course NEW
COM 106 Entire Course NEWCOM 106 Entire Course NEW
COM 106 Entire Course NEW
 
COM 200 UOP Entire Course NEW
COM 200 UOP Entire Course NEWCOM 200 UOP Entire Course NEW
COM 200 UOP Entire Course NEW
 
BUS 668 Entire Course NEW
BUS 668 Entire Course NEWBUS 668 Entire Course NEW
BUS 668 Entire Course NEW
 
BUS 650 Entire Course NEW
BUS 650 Entire Course NEWBUS 650 Entire Course NEW
BUS 650 Entire Course NEW
 
BUS 644 Entire Course NEW
BUS 644 Entire Course NEWBUS 644 Entire Course NEW
BUS 644 Entire Course NEW
 
CMIS 102 Entire Course NEW
CMIS 102 Entire Course NEWCMIS 102 Entire Course NEW
CMIS 102 Entire Course NEW
 
CMGT 582 Entire Course NEW
CMGT 582 Entire Course NEWCMGT 582 Entire Course NEW
CMGT 582 Entire Course NEW
 
CMGT 556 Entire Course NEW
CMGT 556 Entire Course NEWCMGT 556 Entire Course NEW
CMGT 556 Entire Course NEW
 
CMGT 557 Entire Course NEW
CMGT 557 Entire Course NEWCMGT 557 Entire Course NEW
CMGT 557 Entire Course NEW
 
CMGT 554 Entire Course NEW
CMGT 554 Entire Course NEWCMGT 554 Entire Course NEW
CMGT 554 Entire Course NEW
 
CMGT 445 Entire Course NEW
CMGT 445 Entire Course NEWCMGT 445 Entire Course NEW
CMGT 445 Entire Course NEW
 
CMGT 442 Entire Course NEW
CMGT 442 Entire Course NEWCMGT 442 Entire Course NEW
CMGT 442 Entire Course NEW
 
CMGT 433 Entire Course NEW
CMGT 433 Entire Course NEWCMGT 433 Entire Course NEW
CMGT 433 Entire Course NEW
 
CIS 401 Entire Course NEW
CIS 401 Entire Course NEWCIS 401 Entire Course NEW
CIS 401 Entire Course NEW
 
CIS 375 Entire Course NEW
CIS 375 Entire Course NEWCIS 375 Entire Course NEW
CIS 375 Entire Course NEW
 
CIS 349 Entire Course NEW
CIS 349 Entire Course NEWCIS 349 Entire Course NEW
CIS 349 Entire Course NEW
 
CIS 348 Entire Course NEW
CIS 348 Entire Course NEWCIS 348 Entire Course NEW
CIS 348 Entire Course NEW
 

Recently uploaded

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersChitralekhaTherkar
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 

Recently uploaded (20)

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Micromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of PowdersMicromeritics - Fundamental and Derived Properties of Powders
Micromeritics - Fundamental and Derived Properties of Powders
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 

CIS 336 (DEVRY) Entire Course NEW

  • 1. DEVRY CIS 336 Week 1 iLab 1 NEW Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336-devry/cis-336- week-1-ilab-1 For more classes visit http://www.uopassignments.com/
  • 2. DEVRY CIS 336 Week 2 iLab 2 NEW Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336-devry/cis-336- week-2-ilab-2 For more classes visit http://www.uopassignments.com/
  • 3. DEVRY CIS 336 Week 3 Group Project Task 1 Data Model Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-3-group-project-task-1- data-model For more classes visit http://www.uopassignments.com/ Present a detailed data model for the project scenario. You can create your data model using Microsoft Visio, which you will have access to through iLab and Microsoft Excel, which comes with Microsoft Office. Other tools may be used as long as the output is legible and conforms to standard format. (i.e. I will not be able to grade the data model if I cannot tell what it is supposed to be!). Your data model should include a minimum of an ERD and metadata chart (data dictionary).
  • 4. A key component to every task submission is the team responsibilities document. This document should outline the contributions that each member of the team made to completing the task deliverable. There is a sample document in the Doc Sharing tab that can be used, or each team can come up with their own design. As stated in the syllabus, although this is a team project, each member will also be graded on their involvement in the project. This assessment needs to be honest and accurate in describing the individual members’ activities for the task. Deliverables for this task: A completed Data Model to include: An ERD, showing all tables, related attributes, and the primary and foreign keys. This diagram must show both the relationship and cardinality of the relationship using accepted notation. A Data Dictionary (or meta data chart) showing a minimum of the table name, columns, data types, length, and constraints. Team member responsibilities document outlining contributions by team members to this deliverable.
  • 5. DEVRY CIS 336 Week 3 iLab 3 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-3-ilab-3 For more classes visit http://www.uopassignments.com/ CIS 336 Week 3 iLab 3
  • 6. DEVRY CIS 336 Week 4 Group Project Task 2 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-4-group-project-task-2 For more classes visit http://www.uopassignments.com/ Using the Oracle SQL*Plus editor, develop a database for MiniQuest based on your data model. The database should contain all the tables and attributes discussed in the project specifications. Be sure to use your data dictionary when creating your tables. A key component to every task submission is the team responsibilities document. This document should outline the contributions that each member of the team made to completing the task
  • 7. deliverable. To submit this task, you need to create a file in notepad called TEAM_X_TASK2.TXT, where X is your team identifier. For example, Team A would name the file TEAM_A_TASK2.TXT. In this file, create a heading called CREATE STATEMENTS, and then develop the CREATE TABLE statements required to create your database tables. Be sure to include the DROP TABLE statements at the top of your file so that you can reuse the file. If you include the wording CASCADE CONSTRAINTS as part of each DROP TABLE statement, then the order of the DROP statements will not mater. For example, to drop a table named customer, you would state: DROP TABLE CUSTOMER CASCADE CONSTRAINTS PURGE; After testing and verifying that all of your create statements work, create a spooled output file with the SET ECHO ON session command set so that your code and the results will show. Deliverables for this task: Revisions of Task 1 (if any) based on feedback from your instructor. Task 2 comprised of the CREATE TABLE script file and the output file showing that it works. Team member
  • 8. responsibilities document outlining contributions by team members to this deliverable.
  • 9. DEVRY CIS 336 Week 4 iLab 4 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-4-ilab-4 For more classes visit http://www.uopassignments.com/ CIS 336 Week 4 iLab 4
  • 10. DEVRY CIS 336 Week 5 Group Project Task 3 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-5-group-project-task-3 For more classes visit http://www.uopassignments.com/ Develop the SQL statements to insert records into the database. You should ensure that the data in the database is sufficient to allow for each of the reports requested by Ms. Smith to be tested. You need to show a minimum of three insert queries for each database table that you have created. Some tables will obviously require more to ensure that all of the required data is in the database (i.e., the packages table, program table, etc). To submit this task, add a comment heading called INSERT
  • 11. STATEMENTS to your corrected SQL script from Task 2. Add your INSERT statements for each table after this heading. Keep in mind that you will need to insert data into the tables in the same order that the tables were created. This will minimize any integrity constraint errors you might encounter. Keep in mind also that any values being inserted into a field defined as a foreign key field must first exist in a previous table’s primary key field. Save the file as TEAM_X_TASK3.TXT, where X is your team identifier. After testing your statements to verify that your data will insert into your tables, create a spooled output file with the SET ECHO ON session command set for submitting. Note – Although you are only required to have three records per table in most of your tables for this deliverable, you will need a considerable amount of data in your tables for the final project. After testing and verifying that all of your create statements work, create a spooled output file with the SET ECHO ON session command set so that your code and the results will show. Deliverables for this task: Any revisions of task 2 based on feedback from your instructor. Task 3 comprised of the script file
  • 12. containing DROP TABLE, CREATE TABLE, and INSERT statements, and the output file showing that it works. Team member responsibilities document outlining contributions by team members to this deliverable.
  • 13. DEVRY CIS 336 Week 5 iLab 5 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-5-ilab-5 For more classes visit http://www.uopassignments.com/ CIS 336 Week 5 iLab 5
  • 14. DEVRY CIS 336 Week 6 Group Project Task 4 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-6-group-project-task-4 For more classes visit http://www.uopassignments.com/ Develop a query that will identify and mark inactive those customers that have bills overdue by more than 30 days (this can usually be done using a sub-query). Remember, you are only marking a customer as inactive, not actually deleting the customer record from the system. To submit this task, create a heading called MODIFY STATEMENTS in your group project SQL script, and name the file TEAM_X_TASK4.TXT. This should be the same script that contains your DROP
  • 15. TABLE, CREATE TABLE, and INSERT statements. Once you have verified that your SQL statement or statements work, create a spooled output showing the results of your statements. Deliverables for this task: Any revisions of task 3 based on feedback from your instructor. Task 4 comprised of the complete script file (DROP, CREATE, INSERT, SELECT, and UPDATE statements) and the output file showing that it works. Team member responsibilities document outlining contributions by team member to this deliverable.
  • 16. DEVRY CIS 336 Week 6 iLab 6 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-6-ilab-6 For more classes visit http://www.uopassignments.com/ CIS 336 Week 6 iLab 6
  • 17. DEVRY CIS 336 Week 7 Group Project Task 5 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-7-group-project-task-5 For more classes visit http://www.uopassignments.com/ Develop the queries to support each of the reports that are required by Ms. Smith. It is expected that the information returned by the queries is adequate to be used in the reporting process. Make sure your output contains enough information! The following is a recommendation and the MINIMUM amount of data you should have access to: Customer Table: A minimum of 12 customers (this will allow several channels to have more than one customer selecting it as a favorite channel) Billing
  • 18. Table: Records to support the above customers Program Table: A minimum of 25 programs (your program guide should have enough programs for various channels to support the program guide report) Other tables: A sufficient amount of data to support the above when reports are run. Create a heading of REPORTING STATEMENTS as a comment at the bottom of your group project database script file. Add the six report queries to this area. In instances where you are asked to allow for user input, please specify an appropriate value based upon the data in your script. For example, Report 1 is a DATE driven report; therefore, you should use a single date in your WHERE clause to display the information. Task 5 is the final task for the project and is designed to demonstrate that you have adequately satisfied the requirements of the project. The following is what you are to submit for Task 5: Report 1 – A list of the programs on all channels for a specific day showing the channel number, supplier, package, program name, rating code, and show time. This will be similar to a program guide, only not package specific. This is a date-driven report, therefore it should only display programs for a single date specified.
  • 19. Report 2 – A sample program guide showing the channel number, show time, program name, and rating description. For the purposes of this project, your report should be package ID specific (based on a given package ID) and you only need to demonstrate a single package ID. Your report should include all channels associated with the specified package. Report 3 – A list of all new customers signed up on a specific day. This should show enough details about the customer, including favorite channel, address, and minimal billing details. This report is to be date driven, so you will need to specify a date in your query. Report 4 – A list of all the customers made inactive on a specific date. This should show enough details about the customer to allow contact with the customer, the reason he or she was made inactive, and the user who made them inactive. Again, keep in mind that this is a date driven report. Report 5 – A list of each channel (both channel name and channel number) and a count of the number of customers who picked that channel as a favorite channel.
  • 20. Report 6 – A summary of sales for any given day, categorized by package type (i.e., the total sales written on the specified day for each package subscribed to by customers, not bills paid). This report should give details about each package type, the package price, the number of packages sold, and then the total sales amount for that package. Once again, remember that this is going to be a date driven report.
  • 21. DEVRY CIS 336 Week 7 iLab 7 Check this A+ tutorial guideline at http://www.uopassignments.com/cis-336- devry/cis-336-week-7-ilab-7 For more classes visit http://www.uopassignments.com/ CIS 336 Week 7 iLab 7