Skip to content

Commit 27917a8

Browse files
Merge pull request #13 from EmergentSoftware/dev
added InvalidObjectList
2 parents 30bd001 + f87c88e commit 27917a8

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

Test Database/Custom Scripts/Post-Deployment/PostScript.sql

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,17 @@ GO
1313

1414
CREATE VIEW dbo.InvalidObject
1515
AS
16-
SELECT UTE.UseToExistId, UTE.UseToExistColumn FROM dbo.UseToExist AS UTE
16+
SELECT UTE.UseToExistId, UTE.UseToExistColumn FROM dbo.UseToExist AS UTE;
1717
GO
1818

19-
DROP TABLE dbo.UseToExist
19+
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+
GO

0 commit comments

Comments
 (0)