Procedure:
[AdventureWorks2016CTP3].[SQLCop].[test]
Name | Value |
Schema | [SQLCop] |
Owner | [dbo] |
Creation date | 21.09.2016 |
Type | P |
Encrypted | |
ID | 468912742 |
Implementation type | Transact SQL |
Is native compiled |
Name | Value |
QUOTED_IDENTIFIER | ON |
ANSI_NULLS | ON |
Object name | Object type | Dep level |
[SQLCop] | Schema | 1 |
SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON GO -- ============================================= -- Author: <Author,,Name> -- Create date: <Create Date,,> -- Description: <Description,,> -- ============================================= CREATE PROCEDURE [SQLCop].[test] AS BEGIN -- replace content of stored procedure -- with required test staments -- SET NOCOUNT ON added to prevent extra result sets from -- interfering with SELECT statements. SET NOCOUNT ON; END GO |