Question
employees table. You must develop your own average function. You cannot use the inbuilt min function. Use cursor to fetch the records from employee table.
employees table.
You must develop your own average function. You cannot use the inbuilt min function. Use cursor to fetch the records from employee table.
CREATE TABLE "EMPLOYEES"
("EMPLOYEE_ID" NUMBER(6,0),
"FIRST_NAME" VARCHAR2(20),
"LAST_NAME" VARCHAR2(25) CONSTRAINT "EMP_LAST_NAME_NN" NOT NULL ENABLE,
"EMAIL" VARCHAR2(25) CONSTRAINT "EMP_EMAIL_NN" NOT NULL ENABLE,
"PHONE_NUMBER" VARCHAR2(20),
"HIRE_DATE" DATE CONSTRAINT "EMP_HIRE_DATE_NN" NOT NULL ENABLE,
"JOB_ID" VARCHAR2(10) CONSTRAINT "EMP_JOB_NN" NOT NULL ENABLE,
"SALARY" NUMBER(8,2),
"COMMISSION_PCT" NUMBER(2,2),
"MANAGER_ID" NUMBER(6,0),
"DEPARTMENT_ID" NUMBER(4,0),
"BONUS" VARCHAR2(5),
CONSTRAINT "EMP_SALARY_MIN" CHECK (salary > 0) ENABLE,
CONSTRAINT "EMP_ID_PK" PRIMARY KEY ("EMPLOYEE_ID")
USING INDEX ENABLE,
CONSTRAINT "EMP_EMAIL_UK" UNIQUE ("EMAIL")
USING INDEX ENABLE
);
ALTER TABLE "EMPLOYEES" ADD CONSTRAINT "EMP_DEPT_FK" FOREIGN KEY ("DEPARTMENT_ID")
REFERENCES "DEPARTMENTS" ("DEPARTMENT_ID") ENABLE;
ALTER TABLE "EMPLOYEES" ADD CONSTRAINT "EMP_JOB_FK" FOREIGN KEY ("JOB_ID")
REFERENCES "JOBS" ("JOB_ID") ENABLE;
ALTER TABLE "EMPLOYEES" ADD CONSTRAINT "EMP_MANAGER_FK" FOREIGN KEY ("MANAGER_ID")
REFERENCES "EMPLOYEES" ("EMPLOYEE_ID") ENABLE;
ALTER TABLE "DEPARTMENTS" ADD CONSTRAINT "DEPT_MGR_FK" FOREIGN KEY ("MANAGER_ID")
REFERENCES "EMPLOYEES" ("EMPLOYEE_ID") DISABLE;
CREATE INDEX "EMP_DEPARTMENT_IX" ON "EMPLOYEES" ("DEPARTMENT_ID");
CREATE INDEX "EMP_JOB_IX" ON "EMPLOYEES" ("JOB_ID");
CREATE INDEX "EMP_MANAGER_IX" ON "EMPLOYEES" ("MANAGER_ID");
CREATE INDEX "EMP_NAME_IX" ON "EMPLOYEES" ("LAST_NAME", "FIRST_NAME"); 10.1.2: Gather project requirements to meet stakeholder needs.
10.1.3: Define the specifications of the required technologies.
Ubuntu is the derivative I will like to use. I need help with this whole presentation besides the narration of course. BELOW is the background/scenerio of the company.
You will be playing the role of a Linux specialist working for Go2Linux, an organization that provides expert help for organizations that are migrating to Linux. As your first major assignment, you'll be working with Faster Computing, a company that is contemplating a major migration to Linux.
On Board with Go2Linux!
You recently completed your degree and have landed your first gig working for Go2Linux. A small but growing company, Go2Linux provides Linux consulting services to clients across the United States and a handful of European countries. Go2Linux is actively recruiting talented Linux administrators, and you're working with some other recent grads.
Your initial task will be to create a proposal for Faster Computing to help its leaders understand the potential benefits to the organization. Faster Computing is also a growing organization, and leadership believes that transitioning to Linux may help reach the company's goals. You'll need to present the company with not only the "general" benefits of Linux, but also specific suggestions that are relevant for the organization.
Source: Shaunl, Getty Images
Client Background
Faster Computing is a young and growing company in the field of smart home technology. The company imagines and designs technologies that are used in a variety of smart home products. Faster Computing has 500 employees across three different sites. The main site, where most employees work, is in New York City. There are two satellite sites: one in Los Angeles and one in London, England. The company expects to experience rapid growth over the next three to five years, eventually opening additional sites and reaching as many as 5,000 employees.
The current server environment consists exclusively of 20 Windows Servers. These systems provide a variety of services, such as file sharing, web servers, and email servers. They have a mix of hardware configurations, but all are sufficient to run any popular Linux derivative. The company would like to migrate all of these to Linux.
The 500 employees primarily use Windows 10 for their workstations, although there are some users are running Windows 7, and a few in the design department use Macs. The plan is to allow any users with a specific need to remain on Windows; others will be migrated to Linux. The Mac users will continue with Mac.
As with the servers, the client systems have a mix of hardware, but all are sufficient to run any popular Linux derivative. Their primary requirements for a Linux distribution are that it be able to interact with their remaining Windows environment, that support be available, and that it be flexible to run on different types of hardware.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started