Databases Reference
In-Depth Information
7.
Details about SP:Completed event could be found in the following screenshot:
8. Click on the Run button to start the trace.
9. Now open SQL Server Management Studio and establish a connection to the same
SQL Server.
10. In the query window, type the sample T-SQL statements as shown in the following
code snippet and then execute them by pressing F5 key:
Use AdventureWorks2012
GO
SELECT OrderDate,Amount,Refno FROM ordDemo WHERE Refno>8
GO
SELECT
P.ProductID
,P.ProductModelID
FROM
ProductDemo AS P
JOIN
ProductModelDemo AS PM
ON
P.ProductModelID=PM.ProductModelID
WHERE
P.ProductID=680
GO
 
Search WWH ::




Custom Search