Imagem de fundo

Numa instalação SQL Server, o administrador do banco de dados precisa identificar as ta...

Numa instalação SQL Server, o administrador do banco de dados precisa identificar as tabelas do banco de dados corporativo da empresa que sofreram alterações nas suas definições num dado intervalo de tempo.


Assinale o comando que produz corretamente essas informações.


A

select name, type_desc, modify_date

from model.information

where type = 'SYSTEM'

and modify_date

between '01/01/2024' and '31/01/24'


B

select name, type_desc, modify_date

from sys.information

where modify_date

between '01/01/2024' and '31/01/2024'


C

select name, type_desc, modify_date

from view.tables

where type = 'USER'

and modify_date

between '01/01/2024' and '31/01/24'


D

select name, type_desc, modify_date

from sys.tables

where type = 'U'

and modify_date

between '01/01/2024' and '31/01/24'


E

select name, type_desc, modify_date

from DICTIONARY

where type = 'SYSTEM'

and modify_date

between '01/01/2024' and '31/01/24'