Description of how to find custom fields of projectserver

Source: Internet
Author: User

First, you can refer to my previous blog:

Http://www.cnblogs.com/olay/archive/2012/06/28/2568499.html

Similarly, I add a Custom Field "owner" to projectserver ",

In the published database, we can find the data in the DBO. msp_custom_fields table where md_prop_name is the "owner.

You can find the md_prop_uid, that is, the index of DBO. msp_custom_fields Based on the Data. All other data is marked with this field.

Then, in the msp_task_custom_field_values table, find md_prop_uid with the same value to find the value of this custom attribute,

The value of this custom attribute is stored in the text_value field.

The total SQL statement is:

Select B. text_value from DBO. msp_custom_fields as
Inner join DBO. msp_task_custom_field_values as B
On a. md_prop_uid = B. md_prop_uid
Where a. md_prop_name = 'owner'

In this way, we can easily find the value of the projectserver custom attribute.

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.