Transaction Log Lecture notes (see the attachment) & the video link : https://www.youtube.com/watch?v=rPfncf8W1MA&feature=emb_logo Instructions: 1. Create a test database called dbLog 2. Create a...

1 answer below »


Transaction Log



Lecture notes (see the attachment) & the video link :
https://www.youtube.com/watch?v=rPfncf8W1MA&feature=emb_logo



Instructions:


1. Create a test database calleddbLog


2. Create a table calledtbl_Locationwith 3 columns: [LocIDINT PK, Date DATETIMEDefault GetDate(), City CHAR(25) NOT NULL]


3. Add two records to the table for cities - Miami and Los Angeles


Write a SQL script/statement tocheck the log file for the newly created database to check what processes and steps SQL Server took to create the database and table.



What to Submit


1.A Zipped folder with the following files:


a. A single SQL file with all queries


b. A Word file with all screenshots of the database, table and records in the table, transaction log result screen



Naming convention of all files:
firstnameLastname_Module2Assignment.fileextension(.sql or .docx)

Answered Same DayFeb 08, 2021

Answer To: Transaction Log Lecture notes (see the attachment) & the video link :...

Neha answered on Feb 09 2021
136 Votes
50486/firstnameLastname_Module2Assignment.sql
Create schema dblog;
create table tbl_Location
( Lo
cId int primary key auto_increment,
Date datetime default current_timestamp,
City char(25) not null
);
Insert into tbl_location(City)
values('Miami'),
('Los Angeles');
select * from...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here