Question: Database comp science: 2 . 1 ) Provide SQL Statements to Create StudentGradeReport Database, Create Tables. Use appropriate SQL Server data types for each column.

Database comp science:
2.1)Provide SQL Statements to Create StudentGradeReport Database, Create Tables. Use
appropriate SQL Server data types for each column. Attach as a separate .sql file and call it Q21_DDL.sql. HINT: These are the DDL Statements we talked about
in class for the Bike Database. Dont forget about the Go statements. I should be able to run
this whole file without any errors!
Include this for EACH of the required DML Operation request
--**************************************************************************************
-- CREATE OBJECT Name
--**************************************************************************************
DROP TABLE IF EXISTS tblDave
--CREATE TABLE Statements Go Here
RAISERROR (N'Creating Table %s...',-- Message text.
10,-- Severity,
1,-- State,
'',--First Argument
NULL, -- Second Argument
NULL); -- third argument.
GO
2.2) Create test data and Provide SQL Statements to Load tables with test data. Attach as a
separate .sql file and call Q22_LoadDatabaseObjects.sql.
Include this for EACH of the required DML Operation request
--**************************************************************************************
-- LOAD OBJECT NAME
--**************************************************************************************
--Load data statements go here.
RAISERROR (N'Loading Table %s...',-- Message text.
10,-- Severity,
1,-- State,
'',--First Argument
NULL, -- Second Argument
NULL); -- third argument.
GO

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!