We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 432b40f commit f87c88eCopy full SHA for f87c88e
Test Database/Custom Scripts/Post-Deployment/PostScript.sql
@@ -13,7 +13,17 @@ GO
13
14
CREATE VIEW dbo.InvalidObject
15
AS
16
- SELECT UTE.UseToExistId, UTE.UseToExistColumn FROM dbo.UseToExist AS UTE
+SELECT UTE.UseToExistId, UTE.UseToExistColumn FROM dbo.UseToExist AS UTE;
17
GO
18
19
-DROP TABLE dbo.UseToExist
+CREATE PROCEDURE dbo.InvalidObjectList
20
+AS
21
+BEGIN
22
+ SET NOCOUNT ON;
23
+
24
+ SELECT UTE.UseToExistId, UTE.UseToExistColumn FROM dbo.UseToExist AS UTE;
25
+END;
26
+GO
27
28
+DROP TABLE dbo.UseToExist;
29
0 commit comments