Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

Bsbmkg609

17/03/2021 Client: saad24vbs Deadline: 2 Day

Table of Contents 1 Project Overview 5 2 Project Plan 6 3 Logical Data Model 10 4 Relational Data model 11 5 DDL for tablespaces 11 6 DDL Script and objects 12 7 Calculations for sizing objects or source of sizing 23 7.1 Table 1: Warehouse 23 7.2 Table 2: Supplier 24 7.3 Table 3: Promotions 24 7.4 Table 4: Inventory 25 7.5 Table 5: Shopping Cart 26 7.6 Table 6: Customer 26 7.7 Table 7: Order 27 7.8 Table 8: Transaction 28 7.9 Table 9: Shipping 28 8 Results of query on catalog showing all objects with valid status 30 8.1 EMPLY, ADDRSS, CUST 30 8.2 INVT, ORDER, PROMO 30 8.3 TRANSCTN, WHRHSE & CUST 31 8.4 SHIPNG, SHP_CRT & SUPLR 31 9 DB Installation outputs 32 10 Installation checkout commands and sample output 34 11 Create DBA user script 34 12 Alter users script 36 13 Export command and output 37 13.1 Dbuser export file 37 13.2 Export command and output 37 13.3 Unix Screenshot of exp file 41 14 SQL Loader Control files for 10 table loads 42 14.1 Control Files 42 14.2 Log Files 42 15 Analyze commands for each table 43 15.1 Analyze Command Set 1 43 15.2 Analyze Command Set 2 44 15.3 Analyze Command Set 3 44 16 Query output showing row numbers from catalog 45 16.1 Table: TRANSCTN 45 16.2 Table: ADDRSS 45 16.3 Table: SHP_CRT 46 16.4 Table: EMPLY 46 16.5 Table: CUST 47 16.6 Table: WHRHSE 47 16.7 Table: SUPLR 48 16.8 Table: SHIPNG 48 16.9 Table: PROMO 49 16.10 Table: ORDER 49 16.11 Table: INVT 50

Project Overview
Project Title – Online Clothing Store

The objective of the project is to develop a database that can be accessed by a web application, which allows customers to purchase a variety of products sold online from different vendors from any location.

Project Plan

Figure 1: Online shopping database design and implementation project plan page 1

Figure 2: Online shopping database design and implementation project plan page 2

Figure 3: Online shopping database design and implementation project plan page 3

Figure 4: Online shopping database design and implementation project plan page 4

Logical Data Model

Figure 5: Logical data model for online shopping database

Relational Data model

Figure 6: Relational data model for online shopping database

DDL for tablespaces
CREATE TABLESPACE "USER_DATA1" LOGGING DATAFILE '/u01/app/oracle/DBST670/user_data101.dbf' SIZE 4826K RESUE AUTOEXTEND ON NEXT 512K MAXSIZE 65536k EXTENT MANAGEMENT LOCAL;

CREATE TABLESPACE "USER_DATA2" LOGGING DATAFILE '/u01/app/oracle/DBST670/user_data201.dbf' SIZE 4134K RESUE AUTOEXTEND ON NEXT 512K MAXSIZE 65536k EXTENT MANAGEMENT LOCAL;

CREATE TABLESPACE "USER_INDEX" LOGGING DATAFILE '/u01/app/oracle/DBST670/user_INDX01.dbf' SIZE 4210K RESUE AUTOEXTEND ON NEXT 512K MAXSIZE 65536k EXTENT MANAGEMENT LOCAL;

CREATE TEMPORARY TABLESPACE "USER_TEMP" LOGGING TEMPFILE '/u01/app/oracle/DBST670/user_temp01.dbf' SIZE 16384K RESUE AUTOEXTEND ON NEXT 512K MAXSIZE 65536k EXTENT MANAGEMENT LOCAL;

DDL Script and objects
set echo on

-----------------------------------------------------------

-- CREATE ADDRESS TABLE - Common for all entities that require address example customer, shipping, etc.

-----------------------------------------------------------

CREATE TABLE addrss (

addrid NUMBER(7) NOT NULL,

res_no VARCHAR2(255),

street VARCHAR2(300) NOT NULL,

city VARCHAR2(100) NOT NULL,

state CHAR(2),

zip CHAR(10),

addrtype CHAR(1) NOT NULL,

shipng_shpng_id NUMBER(7) NOT NULL,

shipng_order_order_id NUMBER(7) NOT NULL,

shipng_order_transctn_tran_id NUMBER(7) NOT NULL,

shipng_order_promo_prm_id VARCHAR2(20) NOT NULL,

constraint addrss_pk primary key (addrid, shipng_shpng_id, shipng_order_order_id, shipng_order_transctn_tran_id, shipng_order_promo_prm_id)

using index

storage (

initial 25k

next 12k

)

tablespace USER_INDEX

)

pctfree 0

pctused 90

storage (

initial 50k

next 10k

pctincrease 0

maxextents 5

)

tablespace USER_DATA1;

--------------------------------

-- CREATE CUSTOMER TABLE

--------------------------------

CREATE TABLE cust (

cust_id NUMBER(7) NOT NULL,

fname VARCHAR2(100) NOT NULL,

lname VARCHAR2(100) NOT NULL,

constraint cust_pk primary key (cust_id)

using index

storage (

initial 25k

next 12K

)

tablespace USER_INDEX

)

pctfree 0

pctused 90

storage (

initial 50k

next 10K

pctincrease 0

maxextents 5

)

tablespace USER_DATA1;

--------------------------------

-- CREATE EMPLOYEE TABLE

--------------------------------

CREATE TABLE emply (

empid NUMBER(7) NOT NULL,

fname VARCHAR2(100) NOT NULL,

lname VARCHAR2(100) NOT NULL,

dept VARCHAR2(100) NOT NULL,

desgn VARCHAR2(100) NOT NULL,

addrss_addrid NUMBER(7) NOT NULL,

addrss_shpng_id NUMBER(7) NOT NULL,

addrss_order_id NUMBER(7) NOT NULL,

addrss_tran_id NUMBER(7) NOT NULL,

addrss_prm_id NUMBER(7) NOT NULL,

whrhse_whr_id NUMBER(7) NOT NULL,

whrhse_invt_id NUMBER(7) NOT NULL,

whrhse_sup_id VARCHAR2(10) NOT NULL,

constraint emply_pk primary key (empid, addrss_addrid, addrss_shpng_id, addrss_order_id, addrss_tran_id, addrss_prm_id, whrhse_whr_id,whrhse_invt_id, whrhse_sup_id)

using index

storage (

initial 25k

next 12K)

tablespace USER_INDEX

)

pctfree 0

pctused 90

storage (

initial 50k

next 10K

pctincrease 0

maxextents 5

)

tablespace USER_DATA1;

--------------------------------

-- CREATE INVT TABLE

--------------------------------

CREATE TABLE invt (

invt_id NUMBER(7) NOT NULL,

invt_desc VARCHAR2(300) NOT NULL,

"SIZE" VARCHAR2(50) NOT NULL,

inv_date VARCHAR2(10) NOT NULL,

in_stock NUMBER(7) NOT NULL,

cost VARCHAR2(50) NOT NULL,

suplr_sup_id VARCHAR2(50) NOT NULL,

constraint invt_pk primary key (invt_id, suplr_sup_id)

using index

storage (

initial 25k

next 12K)

tablespace USER_INDEX

)

pctfree 0

pctused 90

storage (

initial 50k

next 10K

pctincrease 0

maxextents 5

)

tablespace USER_DATA1;

--------------------------------

-- CREATE ORDER TABLE

--------------------------------

CREATE TABLE "ORDER" (

order_id NUMBER(7) NOT NULL,

ord_desc VARCHAR2(300) NOT NULL,

transctn_tran_id NUMBER(7) NOT NULL,

promo_prm_id VARCHAR2(10) NOT NULL,

constraint order_pk primary key (order_id, transctn_tran_id, promo_prm_id )

using index

storage (

initial 25k

next 12K)

tablespace USER_INDEX

)

pctfree 0

pctused 90

storage (

initial 50k

next 10K

pctincrease 0

maxextents 5

)

tablespace USER_DATA1;

--------------------------------

-- CREATE PROMOTIONS TABLE

--------------------------------

CREATE TABLE promo (

prm_id NUMBER(7) NOT NULL,

prm_desc VARCHAR2(200),

prm_amt varchar2(20) NOT NULL,

constraint promo_pk primary key (prm_id)

using index

storage (

initial 25k

next 12K)

tablespace USER_INDEX

)

pctfree 0

pctused 90

storage (

initial 50k

next 10K

pctincrease 0

maxextents 5

)

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Isabella K.
Accounting & Finance Specialist
Solutions Store
Smart Tutor
Assignment Hub
Assignment Guru
Writer Writer Name Offer Chat
Isabella K.

ONLINE

Isabella K.

I am known as Unrivaled Quality, Written to Standard, providing Plagiarism-free woork, and Always on Time

$65 Chat With Writer
Accounting & Finance Specialist

ONLINE

Accounting & Finance Specialist

I have read your project details. I can do this within your deadline.

$44 Chat With Writer
Solutions Store

ONLINE

Solutions Store

I have read your project details. I can do this within your deadline.

$91 Chat With Writer
Smart Tutor

ONLINE

Smart Tutor

Hello, I an ranked top 10 freelancers in academic and contents writing. I can write and updated your personal statement with great quality and free of plagiarism

$101 Chat With Writer
Assignment Hub

ONLINE

Assignment Hub

I have read and understood all your initial requirements, and I am very professional in this task.

$46 Chat With Writer
Assignment Guru

ONLINE

Assignment Guru

Hello, I an ranked top 10 freelancers in academic and contents writing. I can write and updated your personal statement with great quality and free of plagiarism

$71 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Discussion Question - COSMOS CITY “[+27 61 O4 82 07 1““]@)) EARLY TERMINATION- PILLS FOR SALE IN COSMOS CITY SANDTON, NELLMAPIUS - Help with psychology and communication - Cisco ip phone 7960 speed dial setup - Community Health Assessment and Health Promotion-1000 words-due 9/23/2020 - Anaphoric cataphoric and exophoric reference - Cold and hot water supply system in building - Cba pensioner security account interest - Lava rock lair stamp - Linear Project - Nurse practitioner core competencies 3 quality competencies - Blood music pdf - Is exaggeration a persuasive technique - Conway heating and cooling mckinnon - Communicating in the workplace cheesebro pdf - 82 townsend road rockingham - Fnb private clients benefits - Final Care Coordination Plan - NURSING: EVIDENCED-BASED PRACTICE PROJECT - Health care roles and responsibilities table - 4/208 arthur street fairfield - Hb fuller resistol - 83 matson crescent miranda - Ac motor speed controller india - Jin and hattie age - Laura starrett attorney jacksonville - Act of grace payment - Excel chapter 9 grader project multiple sheet workbook management - Accounting Homework - Neil mccann celtic tattoo - Import odeint function in python - Islington council home connections bidding - Capsim - Rooftop evaporative cooler installation - Pediatric soap note well child - Does psychotherapy have a biological basis - Probation period report sample - How are vectors represented graphically - Binary symmetric channel ppt - Macquarie superoptions pension plan - Dr farheen fahim livingston nj - Media essay in revolution - Unit 2 Article Review - In the heart disease diagnosis case study, what was a benefit of the sipmes expert system? - Grass eaters in criminal justice - All summer in day - HW 2 - Relationship between accounting equation and balance sheet - An agronomist examines the cellulose content - Financial econ - Project deliverable 3 database and data warehousing design - Cry freetown full movie - Scalded dog runs away after being boiled alive - The crucible act 1 film analysis worksheet answers - Budgeted manufacturing overhead rate - Price discrimination is indistinguishable from dumping - Potassium acid phthalate msds - Hypothesis for heat transfer - 75 in lbs to nm - Son of bazerk mac miller - Research paper literature review outline - C06 Online Exam 7_10 SCORE 100 PERCENT - Ancient egypt vocabulary list - Cone gatherers chapter summary - 150-200 Word Discussion - The key operating question of moral management is - Wagga specialist medical centre - Camelot rugby club hemel - Essentialfunctions xlsx at www seletraining com - Nickel and dimed discussion questions - 24 hrs from now - Followers insight checkpoint required - Gluten free pain au chocolat tesco - Leaked movie trailer and a confidentiality agreement - Essay question - Respond to the text lab project 16.2 (objectives 1 and 2) on page 529. - Brundtland report our common future - 4s week 15 assignment EH - Diversity swot analysis example - Redox titration of hydrogen peroxide by potassium permanganate - Rational exponents powers of powers with negative exponents - 56 series blank plate - How to properly apply proactive - Gas laws pre lab answers - Oco and the juice - I'm not scared niccolo ammaniti - Strategy and Strategic Planning- SLP - Perceptual map iphone - Barack obama nobel acceptance speech - Effects of Lowering Interest Rates - Essay - Nokia luxury mobile phones - Which aspect of the following poem might imagists most admire - Racv show your card and save - Mini Case - Microeconomics - How to prepare a cvp income statement - Human resource management an experiential approach 6th edition ebook - Examples of developmentally appropriate activities - NON PROFIT SECTOR IN CANADA