List Report is Different Database

  • Thread starter Thread starter Gary S
  • Start date Start date
G

Gary S

I would like get all the report names in a
different database than the one I am
currently in. Please help.
 
Gary said:
I would like get all the report names in a
different database than the one I am
currently in.


SELECT [Name]
FROM MsysObjects IN "path to other database"
WHERE [Type] = -32764
 
Back
Top