This problem was first fixed in a hotfix that is now contained in a service pack. If you installed the latest Project Server 2003 service pack, you do not have to install the hotfix.
This problem is corrected in Project Server 2003 Service Pack 1.
To resolve this problem, obtain the latest service pack for Project Server 2003. For additional information, click the following article number to view the article in the Microsoft Knowledge Base:
873458
(http://support.microsoft.com/kb/873458/
)
How to obtain the latest service pack for Project Server 2003
This issue is fixed in the Project 2003 Hotfix Package that
is dated December 22, 2003. For additional information, click the following article number to view the article in the Microsoft Knowledge Base:
833849
(http://support.microsoft.com/kb/833849/
)
Description of Microsoft Office Project 2003 hotfix package: December 22, 2003
Note After you install this hotfix on the client computer, you must
follow the steps that are listed in the "More Information" section of this
article to activate the hotfix on the server.
Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section. This problem was first corrected in Project Server 2003 Service Pack 1.
To make sure that your Project Server has all the fixes
that are contained in this update applied correctly, follow these steps:
Run the self-extracting package, this will extract the
files to a temporary folder that you select.
For each Microsoft SQL query file (such as the Websps.sql
file) that is extracted to the temporary folder that you indicated in step 1,
do one of the following:
If you are using Microsoft SQL Server as the backend
for your Project Server, follow these steps:
On your main SQL server in your configuration, run
SQL Query Analyzer.
In the Database drop-down box,
select the ProjectServer database.
On the File menu, click
Open, locate the SQL Query file (located in the temporary
folder that is specified in step 1), and then open the file.
On the Query menu, click
Execute.
When the query is finished running, quit Query
Analyzer.
If you are using SQL Server Desktop Engine (also known
as MSDE 2000) as the backend for your Project Server, follow these steps:
On your main SQL server in your configuration,
click Start, click Run, type osql
-i <tempdir>\<queryfile>.sql -U sa in the
Open box, and then click OK.
For
example, if you extracted the files in step 1 to C:\Temp and the name of the
query file was Websps.sql, you would type osql -i c:\temp\websps.sql
-U sa. This connects you to the local, default instance of MSDE
2000 by using the System Administrator account. You may also run osql with
another username that has System Administrator permissions on the
server.
At the Password prompt, type the password for the
account that you used in step a, and then press ENTER.
This SQL query file that you specified in step a
will now run.
In Notepad, type or paste the following SQL code into a new
file:
declare @count as INT
select @count = COUNT(name) from syscolumns where
id = object_id('MSP_WEB_ADMIN') and
name='WADMIN_USE_BASELINE_SUMMARY_DATA'
if @count = 0
alter table MSP_WEB_ADMIN add WADMIN_USE_BASELINE_SUMMARY_DATA
tinyint not null default 1
GO
update MSP_WEB_ADMIN set WADMIN_USE_BASELINE_SUMMARY_DATA = 0
GO
On the File menu, click Save
As.
Change the Save in box to the temporary
folder that you selected in step 1 of the "More Information"
section.
In the File name box, type a name for your
SQL file-for example, type Activate.sql.
Change the Save as type box to
Text Documents (*.txt).
Click OK to save your SQL file.
To activate this hotfix, perform step 2 in the "More
Information" section for the new SQL file that you saved in steps 1 through
5.
To deactivate this hotfix, follow these steps:
In Notepad, type or paste the following SQL code into a new
file:
update MSP_WEB_ADMIN set WADMIN_USE_BASELINE_SUMMARY_DATA = 1
GO
On the File menu, click Save
As.
Change the Save in box to the temporary
folder that you selected in step 1 of the "More Information"
section.
In the File name box, type a name for your
SQL file--for example, type Deactivate.sql.
Change the Save as type box to
Text Documents (*.txt).
Click OK to save your SQL file.
To deactivate this hotfix, perform step 2 in the "More
Information" section for the new SQL file that you saved in steps 1 through
5.