discussion

 

Give an example of an organization with an ineffective or cumbersome structure. Explain the problems with the current structure and how these problems could be solved.

The assignment is to answer the question provided above in essay form. This is to be in narrative form and should be as thorough as possible. Bullet points should not to be used. The paper should be at least 1.5 – 2 pages in length, Times New Roman 12-pt font, double-spaced, 1 inch margins and utilizing at least one outside scholarly or professional source related to project management. The textbook should also be utilized. Do not insert excess line spacing. APA formatting and citation should be used.

Developing Disaster Recovery Backup Procedures and Recovery Instructions

Briefly review at least three of the first page results regarding RTO.

Make a backup of any Lab Assessment Worksheets you may have completed from this

lab manual. If this is the only lab you’ve worked on, then make a mock Lab Assessment

Worksheet using the worksheet from this lab and back that one up instead.

Write the backup procedures and recovery procedures you used.

Describe your personal procedures in terms of your RTO as explained in Web sites

visited earlier in this lab.

Describe ways you can lower the RTO.

CIS 275

USE IMDB    — ensures correct database is active

GO

PRINT ‘|—‘ + REPLICATE(‘+—-‘,15) + ‘|’

PRINT ‘Read the questions below and insert your queries where prompted.  When  you are finished,

you should be able to run the file as a script to execute all answers sequentially (without errors!)’ + CHAR(10)

PRINT ‘Queries should be well-formatted.  SQL is not case-sensitive, but it is good form to

capitalize keywords and table names; you should also put each projected column on its own line

and use indentation for neatness.  Example:

   SELECT Name,

          CustomerID

   FROM   CUSTOMER

   WHERE  CustomerID < 106;

All SQL statements should end in a semicolon.  Whatever format you choose for your queries, make

sure that it is readable and consistent.’ + CHAR(10)

PRINT ‘Be sure to remove the double-dash comment indicator when you insert your code!’;

PRINT ‘|—‘ + REPLICATE(‘+—-‘,15) + ‘|’ + CHAR(10) + CHAR(10)

GO

GO

PRINT ‘CIS2275, Lab Week 6, Question 1  [3pts possible]:

Write the query to display the name and year of birth for all people born after 1980, who have

directed at least one show (i.e. those who appear at least once in the title_directors table).

Limit results to those who have died (who have a value in the deathYear column).

———————————————————————————————-

Columns to display:    name_basics.primaryName, name_basics.birthYear

Sort in descending order by birth year.’ + CHAR(10)

— [Insert your code here]

GO

PRINT ‘CIS2275, Lab Week 6, Question 2  [3pts possible]:

Show every genre of television show which has had at least one title with 500 episodes.

i.e. limit results to the titleType ”tvEpisode” in the title_basics table, and to titles

containing a row in the title_episode table with episodeNumber 500.

———————————————————————————————-

Columns to display:    title_genre.genre

Display genre name only, and eliminate duplicate values.’ + CHAR(10)

GO

— [Insert your code here]

GO

PRINT ‘CIS2275, Lab Week 6, Question 3  [3pts possible]:

Write a common table expression to identify the WORST shows: join title_basics against title_ratings

and limit your results to those with an averageRating value equal to 1.  Project the title,

type, and startYear from title_basics; and label your CTE as BADSHOWS.

In the main query, show a breakdown of BADSHOWS grouped by type, along with the total number of

rows for each (i.e. GROUP BY titleType)

———————————————————————————————-

Columns to display:    titleType, COUNT(*)

Sort results in descending order by COUNT(*).’ + CHAR(10)

GO

— [Insert your code here]

GO

PRINT ‘CIS2275, Lab Week 6, Question 4  [3pts possible]:

Identify the least popular professions.  Show each profession value from the name_profession table,

along with the total number of matching rows (GROUP BY profession).  Use the HAVING clause to limit

your results to professions with less than 1,000 rows.

———————————————————————————————-

Columns to display:    name_profession.profession, COUNT(*)’ + CHAR(10)

— [Insert your code here]

GO

GO

PRINT ‘CIS2275, Lab Week 6, Question 5  [3pts possible]:

Use the query from #4 above to display the names of all people belonging to these professions.

Use the previous query as a subquery in the FROM clause here to limit the results.

———————————————————————————————-

Columns to display:    name_basics.primaryName, name_profession.profession

Sort results in ascending order by primaryName.’ + CHAR(10)

— [Insert your code here]

GO

GO

PRINT ‘CIS2275, Lab Week 6, Question 6  [3pts possible]:

Show the name of every writer, along with the total number of titles they”ve written (i.e. rows in the 

title_writers table).  Limit results to those who have written between 5,000 and 10,000 titles (inclusive).

———————————————————————————————-

Columns to display:    name_basics.primaryName, COUNT(*)

Sort results in descending order by primaryName.’ + CHAR(10)

— [Insert your code here]

GO

GO

PRINT ‘CIS2275, Lab Week 6, Question 7  [3pts possible]:

Show the actor and character names for everyone who has performed the same role in more than one

show with the title ”Battlestar Galactica”.  i.e. identify the combination of (primaryName, characters)

which occurs in the title_principals table more than once for matching titles.

———————————————————————————————-

Columns to display:    name_basics.primaryName, title_principals.characters, COUNT(*)

Sort results in ascending order by primaryName.’ + CHAR(10)

— [Insert your code here]

GO

GO

PRINT ‘CIS2275, Lab Week 6, Question 8  [3pts possible]:

Identify the names of people who have directed more than five highest-rated shows (i.e. title_ratings.averageRating = 10).

For each of these people, display their names and the total number of shows they have written.

———————————————————————————————-

Columns to display:    name_basics.primaryName, COUNT(*)

Sort results in ascending order by primaryName.’ + CHAR(10)

— [Insert your code here]

GO

GO

PRINT ‘CIS2275, Lab Week 6, Question 9  [3pts possible]:

Display the title and running time for all TV specials ( titleType = ”tvSpecial” ) from 1982; if the run time is

NULL, substitute zero.

———————————————————————————————-

Columns to display:    title_basics.primaryTitle, title_basics.runtimeMinutes

Sort in descending numerical order by the resulting calculated run time value.’ + CHAR(10)

— [Insert your code here]

GO

GO

PRINT ‘CIS2275, Lab Week 6, Question 10  [3pts possible]:

Identify every movie from 1913 (startYear = 1913, titleType = ”movie”); limit your results to those with a non-NULL value

in the runtimeMinutescolumn.  For each movie, display the primaryTitle and the averageRating value from the title_ratings table.

Use DENSE_RANK() to display the rank based on averageRating (label this RATINGRANK), and also the rank based on runtimeMinutes

(label this LENGTHRANK).  Both of these should be based on an asecending sort order.

———————————————————————————————-

Columns to display:    title_basics.primaryTitle, title_ratings.averageRating,

                       RATINGRANK, LENGTHRANK

Sort results in ascending order by primaryTitle.’ + CHAR(10)

— [Insert your code here]

GO

GO

————————————————————————————-

— This is an anonymous program block. DO NOT CHANGE OR DELETE.

————————————————————————————-

BEGIN

    PRINT ‘|—‘ + REPLICATE(‘+—-‘,15) + ‘|’;

    PRINT ‘ End of CIS275 Lab Week 6’ + REPLICATE(‘ ‘,50) + CONVERT(CHAR(12),GETDATE(),101);

    PRINT ‘|—‘ + REPLICATE(‘+—-‘,15) + ‘|’;

END;

executive summaries

 1 page discussion

  1. Search the internet for sample executive summaries.
  2. From your research, describe 3 items that need to be in an executive summary and your reasons why.
  3. Include in your report the ways that you would ensure that your executive summary would get buy-in from the key stakeholders of this project.

IT Software in business

i have assignment for IT software in business its only 3 questions and it should be submit as excel file. i need to get 100% in this assignment and its super easy but im not good at IT

Response 3-2 (CET)

 

Note: Please go through the attached document. we need to respond to that like whether we are agreeing or not. If yes why we are agreeing if not why we are not agreeing. 

Need it in APA format with peer reviewed references.

Week 8

 

You are the webmaster of a college website. You share a server with other school departments such as accounting and HR. create at least five security-related rules for staff members who are adding web pages being added to your site. Include a justification and explanation for each rule. Rules should relate to college, staff and student, and system information security.

“Artificial Intelligence for Cancer Detection”

 Topic : “Artificial Intelligence for Cancer Detection” •

 Types of essays – Explanatory – describes a contemporary issue: Example – Encryption & Foreign Travel 

– Analytical – evaluates a topic or issue, e.g., the pros and cons of encrypting the HDD on your laptop.

 – Argumentative – takes a position or makes a claim about a topic or issue and persuades the reader of the validity, e.g., all laptop HDDs should be encrypted. • 

Structure 

– Title Page (Name, Class Name & Number, Class Assignment, Title of Paper, Student Name & ID, Date) 

– Table of Contents 

– Opening paragraph – introduce the topic or issue to be covered. 

– Body – one or more paragraphs that cover the points to be made, discussing both the pro’s and con’s of both sides of the issue 

– Closing paragraph/Results – summarize the results, findings, or conclusions. Use critical thinking to develop new insights. Note, the conclusion is not just a regurgitation of the facts.

 – References (references due not count in length.

 **The Essay must address the following areas** 

1. A description of the technology being addressed 

2. Why this technology was chosen 

3. A brief history of the technology

4. Positive Impacts of the technology 

5. Negative Impacts of the Technology 

6. What is the Future of this Technology (where does it go from here)? 

7. References 

Student in the course will write an approximately 1000-word essay (4 ½ to 5 pages of written text not including front and back matter) addressing the impact of computing on individuals, organizations, and/or society in general. The topic selected for the essay must elaborate on how computer technology in general, or how a specific technology has affected lifestyles, the economy, the environment, politics, etc., and must be currently relevant.