Question: How many audit action groups are available for a server in SQL Server 2008 to perform different actions on audit data?
A
B
C
D
25
B
30
C
35
D
40
Note: Not available
CREATE PROCEDURE Person.GetEmployees @LastName nvarchar(50), @FirstName nvarchar(50) AS SET NOCOUNT ON SELECT FirstName, LastName, JobTitle, Department FROM Person.EmployeeDepartment WHERE FirstName = @FirstName AND LastName = @LastName GOWhich of the following is a valid code to execute the GetEmployees stored procedure?