mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
14 lines
441 B
Transact-SQL
14 lines
441 B
Transact-SQL
|
|
if exists (select * from sysobjects where id = object_id(N'ldap_attrs') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
drop table ldap_attrs
|
|
GO
|
|
|
|
if exists (select * from sysobjects where id = object_id(N'ldap_entries') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
drop table ldap_entries
|
|
GO
|
|
|
|
if exists (select * from sysobjects where id = object_id(N'ldap_objclasses') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
|
|
drop table ldap_objclasses
|
|
GO
|
|
|