1- DROP TABLE objectpropertyex_ownerid_schema.objectpropertyex_ownerid_table
1+ -- =============== ACL tests ===============
2+ DROP USER objectpropertyex_test_user
23GO
34
4- DROP SCHEMA objectpropertyex_ownerid_schema
5+ DROP LOGIN objectpropertyex_test_login
6+ GO
7+
8+ -- =============== Cross-database scoping ===============
9+ DROP DATABASE objectpropertyex_otherdb
10+ GO
11+
12+
13+ -- =============== Properties test objects ===============
14+ DROP INDEX objectpropertyex_idx ON objectpropertyex_indexed_table
15+ GO
16+
17+ DROP TABLE objectpropertyex_indexed_table
18+ GO
19+
20+ DROP TABLE objectpropertyex_noindex_table
21+ GO
22+
23+ DROP TABLE objectpropertyex_default_table
24+ GO
25+
26+ DROP TABLE objectpropertyex_notshipped_table
27+ GO
28+
29+ DROP FUNCTION objectpropertyex_schemabound_fn
30+ GO
31+
32+ DROP FUNCTION objectpropertyex_noschemabound_fn
33+ GO
34+
35+
36+ -- =============== IsSchemaBound - schema-bound view ===============
37+ DROP VIEW objectpropertyex_schemabound_view
38+ GO
39+
40+
41+ -- =============== BaseType - additional object types ===============
42+ DROP FUNCTION objectpropertyex_tvf
43+ GO
44+
45+ DROP FUNCTION objectpropertyex_itvf
46+ GO
47+
48+ DROP SEQUENCE objectpropertyex_test_seq
49+ GO
50+
51+ DROP TABLE objectpropertyex_fk_table
52+ GO
53+
54+ DROP TABLE objectpropertyex_constraint_table
55+ GO
56+
57+ DROP TRIGGER objectpropertyex_test_trigger
58+ GO
59+
60+ DROP TABLE objectpropertyex_trigger_table
61+ GO
62+
63+
64+ -- =============== Special Input Cases ===============
65+ DROP TABLE objectpropertyex_specialinput_table
566GO
667
768
869-- =============== BaseType ===============
9- -- Cleanup
1070DROP TABLE objectpropertyex_basetype_table
1171GO
1272
73+ DROP TYPE objectpropertyex_basetype_tt
74+ GO
75+
1376DROP VIEW objectpropertyex_basetype_view
1477GO
1578
@@ -20,7 +83,22 @@ DROP PROC objectpropertyex_basetype_proc
2083GO
2184
2285
23- -- =============== Special Input Cases ===============
24- -- Cleanup
25- DROP TABLE objectpropertyex_specialinput_table
86+ -- =============== OwnerId ===============
87+ DROP TABLE objectpropertyex_ownerid_schema.objectpropertyex_ownerid_table
88+ GO
89+
90+ DROP SCHEMA objectpropertyex_ownerid_schema
91+ GO
92+
93+ -- =============== Permission edge cases ===============
94+ DROP TABLE objectpropertyex_oid_helper
95+ GO
96+
97+ DROP TABLE objectpropertyex_perm_table
98+ GO
99+
100+ DROP USER objectpropertyex_perm_user
101+ GO
102+
103+ DROP LOGIN objectpropertyex_perm_login
26104GO
0 commit comments