engines moved to separate library

This commit is contained in:
Jan Prochazka
2020-02-02 22:27:49 +01:00
parent eee6c94ebc
commit 6d1f3e977c
30 changed files with 844 additions and 40 deletions

View File

@@ -0,0 +1,6 @@
select
o.name as pureName, s.name as schemaName, o.object_id as objectId,
o.create_date, o.modify_date
from sys.tables o
inner join sys.schemas s on o.schema_id = s.schema_id
where o.object_id =[OBJECT_ID_CONDITION]