How to identify users and just resources?

  • Thread starter PMPLookingForToBe
  • Start date
P

PMPLookingForToBe

Hi.

How can I identify, using just the tables of Project Server database, user
accounts (whose can login at Web Access) and just resources (people or
materials assigned to tasks only)?

Thanks a lot.
 
P

PMPLookingForToBe

Asaad:

Thanks, anyway. In fact, I just found the answer.

Best regards.
 
D

Dale Howard [MVP]

Gaspar --

If I understand you correctly, you want to identify those who have user
accounts in PWA only, and those who are resources in the Enterprise Resource
Pool. To identify PWA user accounts only, use the following SQL Query:

SELECT RES_NAME, RES_EUID
FROM MSP_WEB_RESOURCES
WHERE (RES_EUID IS NULL)

To identify resources in the Enterprise Resource Pool, use the following SQL
Query:

SELECT RES_NAME, RES_EUID
FROM MSP_WEB_RESOURCES
WHERE (RES_EUID IS NOT NULL)

The second query identifies both people and material resources. Hope this
helps.
 
P

PMPLookingForToBe

Dale:

Thanks a lot.

It was very useful.
--
Gaspar
PM --Adopting methodology--


Dale Howard said:
Gaspar --

If I understand you correctly, you want to identify those who have user
accounts in PWA only, and those who are resources in the Enterprise Resource
Pool. To identify PWA user accounts only, use the following SQL Query:

SELECT RES_NAME, RES_EUID
FROM MSP_WEB_RESOURCES
WHERE (RES_EUID IS NULL)

To identify resources in the Enterprise Resource Pool, use the following SQL
Query:

SELECT RES_NAME, RES_EUID
FROM MSP_WEB_RESOURCES
WHERE (RES_EUID IS NOT NULL)

The second query identifies both people and material resources. Hope this
helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top