Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Urgent 1. Consider the following code, and please explain what the outcome will be: ALTER Procedure [dbo].[DeleteStudentTransaction]@Id INT AS BEGIN TRY BEGIN TRANSACTION DELETE FROM

Urgent

1.

Consider the following code, and please explain what the outcome will be:

ALTER Procedure [dbo].[DeleteStudentTransaction]@Id INT

AS

BEGIN TRY

BEGIN TRANSACTION

DELETE FROM Student WHERE Id=@Id

RAISERROR('Some Random Error',16,1)

COMMIT

END TRY

BEGIN

CATCH ROLLBACK

END CATCH

2.

The code below contains errors. Can you please correct the errors so that the procedure can execute successfully.

SET ANSI_NULLS ON

GO

SET QUOTED_IDENTIFIER ON

GO

CREATE PROCEDURE PrintCustomers_Cursor

AS

BEGIN

SET NOCOUNT ON;

DECLARE @CustomerId INT

,@Name VARCHAR(100)

,@Country VARCHAR(100)

DECLARE Counter DATE

SET Counter = 1

DECLARE PrintCustomers READ_ONLY

FOR

SELECT CustomerId, Name, Country

FROM Customers

OPEN PrintCustomers

FETCH FROM PrintCustomers INTO

@CustomerId, @Name, @Country

WHILE @@FETCH_STATUS = 0

BEGIN

IF @Counter = 1

BEGIN

PRINT 'CustomerID' + CHAR(9) + 'Name' + CHAR(9) + CHAR(9) + CHAR(9) + 'Country'

PRINT '------------------------------------'

END

PRINT (@CustomerId AS VARCHAR(10)) + CHAR(9) + CHAR(9) + CHAR(9) + @Name + CHAR(9) + @Country

SET Counter = Counter + 1

FETCH FROM PrintCustomers INTO

@CustomerId, @Name, @Country

END

DEALLOCATE PrintCustomers

CLOSE PrintCustomers

END

GO

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Illuminated

Authors: Catherine M. Ricardo

1st Edition

0763733148, 978-0763733148

More Books

Students also viewed these Databases questions

Question

Determine the amplitude and period of each function.

Answered: 1 week ago

Question

5. Discuss the key components of behavior modeling training.

Answered: 1 week ago