Run an SQL query to determine which queries a user created:
NOTE: It isn't possible to determine which user created queries using the ePO console.
- Open Microsoft SQL Server Management Studio.
- Type the login and password information for the account specified and click Connect.
- Expand Databases.
- Right-click the ePO database (where the default name is ePO_<ePO_server_name>) and select New Query.
- Paste the following SQL statement into the query window:
- SELECT * FROM [ePO_<ePO_server_name>].[dbo].[OrionQueryMT]where ModifiedBy = '<username>'
where <ePO_server_name> is the ePO server name and <username> is the name of the user
NOTE: The query above lists created queries and modified queries for the user.
- Click Execute.
This query output contains columns including the following:
- Name: Displays the name of the query
- CreatedBy: Displays the name of the user who created the query
- ModifiedBy: Displays the name of the user who modified the query