I have a table, customer. The following is the sql statement and its output:
select C.ID, C.FNAME, C.LNAME, C.DATE
FROM CUSTOMER C
WHERE C.ID = 1007
3 John Smith 2005-10-05 00:00:00.000
4 Mary Brown NULL
5 Bill White NULL
And another table, account_detail, with about 30 records in there...
I have a stored procedure like the following (in between the two ----- lines):
------------------------------------
CREATE PROCEDURE abc
@V1 int,
@V2 money,
@V3 int output
AS
……...
……...
Begin tran
Insert or Update data Statement-1
IF (@@ERROR...
I was trying to use the Transact-SQL Debugger.
I went to Object Browser, found my stored procedure, right clicked and chosed "Debug".
The "Debug Procedure" window came up. I entered values for all variables and clicked on the Execute button. I didn't see anything happen. I could not add...
/* =====================================================================================
--
-- In the following sample database, there are three tables: VENDOR, PRODUCT and
-- PRODUCT_PICTURE...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.