List Report is Different Database

G

Gary S

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

Marshall Barton

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
 
Top