G
Gil
Hi,
I thought I will share the problem and solution we experienced
lately, hoping it will help others.
We are using Project server 2007 with Infrastructure update.
In many Projects, publish was hang at 93%, then fails, then blocking
the queue, with error messages like:
ProjectPublishFailure
UpdateSRAMessage (Summary Resource Assignment)
NullReferenceException: Object reference not set to an instance of an
object (this one is from logs our IT retrieved).
We tried many suggestions from this groups: Unpublished all
assignments (problem wasn't there), exporting to XML and importing
back (didn't help) and more..
We had to open a ticket with Microsoft, and they have solved this
issue:
They run the following query on our published database:
select * from MSP_ASSN_ENTERPRISE
where proj_uid='11111111-1111-1111-1111-111111111111'
and assn_finish_date > '2049-12-31 17:00:00.000'
This returned two faulty assignments, which their finish date was
greater than year 2049 (We have encounter this before, as a result of
the "spread actual work" bug, which is suppose to be fixed now).
Then they run another query on this database, in order to delete this
assignments (after making a backup to the database):
delete from MSP_ASSN_ENTERPRISE
where proj_uid='11111111-1111-1111-1111-111111111111'
and assn_finish_date > '2049-12-31 17:00:00.000'
After this action, all project were successfully published.
Gil.
I thought I will share the problem and solution we experienced
lately, hoping it will help others.
We are using Project server 2007 with Infrastructure update.
In many Projects, publish was hang at 93%, then fails, then blocking
the queue, with error messages like:
ProjectPublishFailure
UpdateSRAMessage (Summary Resource Assignment)
NullReferenceException: Object reference not set to an instance of an
object (this one is from logs our IT retrieved).
We tried many suggestions from this groups: Unpublished all
assignments (problem wasn't there), exporting to XML and importing
back (didn't help) and more..
We had to open a ticket with Microsoft, and they have solved this
issue:
They run the following query on our published database:
select * from MSP_ASSN_ENTERPRISE
where proj_uid='11111111-1111-1111-1111-111111111111'
and assn_finish_date > '2049-12-31 17:00:00.000'
This returned two faulty assignments, which their finish date was
greater than year 2049 (We have encounter this before, as a result of
the "spread actual work" bug, which is suppose to be fixed now).
Then they run another query on this database, in order to delete this
assignments (after making a backup to the database):
delete from MSP_ASSN_ENTERPRISE
where proj_uid='11111111-1111-1111-1111-111111111111'
and assn_finish_date > '2049-12-31 17:00:00.000'
After this action, all project were successfully published.
Gil.