Find Jobs
Hire Freelancers

Create Oracle database tables using SQL DDL

$30-250 USD

In Progress
Posted about 12 years ago

$30-250 USD

Paid on delivery
In this project you will perform the physical design and implementation using SQL Data Definition Language (DDL) and proceed with populating the Mom and Pop Johnson Video Store database via Data Manipulation Language (DML) SQL commands. The ERD and detailed documentation from Project 1 will be supplied for your entry point for those who need it. Project 2 Details: Part 1 i. Create Oracle database tables using SQL Data Definition Language (DDL) for each table listed in Project 1. ii. Make sure that entity and referential integrity are enforced by declaring a primary key for each table (these may be composite keys) and declaring all appropriate foreign keys. iii. Your CREATE TABLE statements must show integrity constraints, as appropriate, for NOT NULL, UNIQUE, PRIMARY KEY, FOREIGN KEY, REFERENCES, and CHECK constraints. iv. Be sure to save your script used to create these tables as yournameproject2step1.sql. v. You should test your script to make sure it runs without error. Part 2 i. Provide two examples of SQL DML (i.e., "INSERT") commands that fail different table integrity constraints you set up in one of your table. ii. Explain why the statements fail. iii. Be sure to save your script used to as yournameproject2step2.sql. iv. You can include comments in the SQL script describing why the insert statements failed. Part 3 i. Populate each of your tables with at least five valid rows of data each and show the SQL you used. ii. Populate other tables in your database, as necessary, to satisfy referential integrity. iii. Be sure to save your script used to create these records as yournameproject2step3.sql. iv. You should test your script to make sure it runs without error. Part 4 i. Write SQL to perform the following queries and updates. a) Retrieve all of your customers' names, account numbers, and addresses (street and zip code only), sorted by account number. b) Retrieve all of the videos rented in the last 30 days and sort in chronological rental date order. c) Produce a list of your distributors and all their information sorted in order by company name. d) Update customer names to change their maiden names to married names. You can choose which records to update. e) Delete customers from the database. You can choose which records to delete. ii. Be sure to save your script used to create these records as yournameproject2step4.sql. iii. You should test your script to make sure it runs without error:
Project ID: 1511530

About the project

30 proposals
Remote project
Active 12 yrs ago

Looking to make some money?

Benefits of bidding on Freelancer

Set your budget and timeframe
Get paid for your work
Outline your proposal
It's free to sign up and bid on jobs
Awarded to:
User Avatar
Good Evening, Over 15 years Oracle experience in schema creation (DDL)and quering (SQL). I have immediate bandwidth to work on this. Please see PMB for further details. Tim
$50 USD in 1 day
0.0 (0 reviews)
0.0
0.0
30 freelancers are bidding on average $107 USD for this job
User Avatar
This project is ready to deliver. Please accept my bid.
$100 USD in 0 day
4.7 (65 reviews)
5.9
5.9
User Avatar
Please see PM for detailed proposal. Thanks!
$50 USD in 1 day
3.4 (6 reviews)
4.8
4.8
User Avatar
Hi, kindly check your inbox for my inquiries. Thanks.
$40 USD in 0 day
5.0 (11 reviews)
3.8
3.8
User Avatar
Hello I can do this for you. I have over 10 years of oracle experience. Please see my profile and feedbacks. Regards Faisal
$50 USD in 1 day
5.0 (3 reviews)
3.4
3.4
User Avatar
hello, 5 years experience in the C# , XML,JS ,Ajax and Mssql field. i am Microsoft Certified Solution Developer
$130 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
I am a software developer and I have experience with Mysql and Oracle databases.
$30 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
please send me detail .
$100 USD in 10 days
0.0 (0 reviews)
0.0
0.0
User Avatar
I've been working with Oracle DBMS for 2 years checking data integrity and making sophisticated queries for business intelligence purposes. I wil perform your task in 2 days having been provided with ERD model and detailed information. Thanks, Marina
$70 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
Hello I would like to help you with this project I have 4 years exp. with oracle sql (plsql) db. I can deliver all 4 steps probably in 1 working day.
$30 USD in 3 days
0.0 (0 reviews)
0.0
0.0
User Avatar
Please send detailed documentation on my mail. Halyna
$100 USD in 5 days
0.0 (0 reviews)
0.0
0.0
User Avatar
I have about 12 years experience in ORACLE. Please allow me to prove myself.
$100 USD in 2 days
0.0 (0 reviews)
0.0
0.0
User Avatar
Hello, if ERD and detailed documentation from Project 1 is given, I can complete the four task for you in 3 days.
$90 USD in 3 days
0.0 (0 reviews)
0.0
0.0
User Avatar
Hello, I have 20 years of expertise as Oracle DBA and developer, we did not have internet access those days! those jobs were for real!, stacks of huges books to read and search for problems. Also we did not have GUI Tools to perform the job, the command line and character terminal was the only tool. I believe I can do this job. Thank you for reading this bid. Best regards
$190 USD in 3 days
0.0 (0 reviews)
0.0
0.0
User Avatar
Work for some hours
$30 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
hello sir, I am ready to start the work now. please check the PM for more information. -Jugal Shah
$50 USD in 3 days
0.0 (0 reviews)
0.0
0.0
User Avatar
Dear Sir First i have to know the schema of the tables in project 1 to write the SQL DDL statements to create them I have experience 5 years in creating tables using SQL Statments and creating relations between them I was a member of a team that created a healthcare systems using Oracle, so i know how to write SQL and PL/SQL statements Here is a simple example of creating 2 tables and creating relations between them Table 1 CREATE TABLE PROJECTS ( PROJ_ID VARCHAR2(40 BYTE), PROJ_NAME VARCHAR2(150 BYTE), PROJ_START_DATE DATE, PROJ_REV NUMBER(3) ); ALTER TABLE PROJECTS ADD ( CONSTRAINT PROJ_PRIM_KEY PRIMARY KEY (PROJ_ID) ); ALTER TABLE PROJECTS ADD ( CONSTRAINT PROJ_NAM_UNQ UNIQUE (PROJ_NAME) ); Tabel 2 CREATE TABLE ITEMS ( ITM_PROJ_ID VARCHAR2(50 BYTE), ITEM_ID VARCHAR2(5 BYTE), ITEM_TITLE VARCHAR2(150 BYTE), ITEM_DESC LONG, ITEM_REQ_TIME NUMBER(3), ITEM_REV_REQ VARCHAR2(2 BYTE), ITEM_NO_TYPE_INIT VARCHAR2(2 BYTE), ITEM_NO_TYPE_FINAL VARCHAR2(6 BYTE), ITEM_APROX_DOC VARCHAR2(4 BYTE), ITEM_SUP_START NUMBER(3), ITEM_SUP_COMPL NUMBER(3), ITEM_COMPL NUMBER(1) DEFAULT 0 ) ; COMMENT ON COLUMN ITEMS.ITEM_COMPL IS '0 not completed - 1 completed'; ALTER TABLE ITEMS ADD ( CONSTRAINT ITMS_PRM_KEY PRIMARY KEY (ITEM_ID) ); ALTER TABLE ITEMS ADD ( CONSTRAINT ITMS_FRN_KEY FOREIGN KEY (ITM_PROJ_ID) REFERENCES PROJECTS (PROJ_ID));
$150 USD in 1 day
0.0 (0 reviews)
0.0
0.0
User Avatar
Over 20 years exp in Oracle DBMS Design and PL-SQL / SQL Development. Please supply details of project 1.
$125 USD in 3 days
0.0 (0 reviews)
0.0
0.0
User Avatar
Hi, I have worked as database administrator for five years, mainly for financial, telecommunication and trading companies. I hope that that my experience and abilities will meet of your expectations.
$250 USD in 5 days
0.0 (0 reviews)
0.0
0.0
User Avatar
I am a PL/SQL expert. I work with PL/SQL in a daily basis. I have more than 15 years of experience in this technology.
$100 USD in 3 days
0.0 (0 reviews)
0.0
0.0
User Avatar
i have understand the project thoroughly whatever the requirement as mentioned.
$50 USD in 3 days
0.0 (0 reviews)
0.0
0.0

About the client

Flag of UNITED STATES
United States
0.0
0
Member since Mar 18, 2012

Client Verification

Thanks! We’ve emailed you a link to claim your free credit.
Something went wrong while sending your email. Please try again.
Registered Users Total Jobs Posted
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Loading preview
Permission granted for Geolocation.
Your login session has expired and you have been logged out. Please log in again.