Skip to main content

Posts

Showing posts from August, 2012

User profile property values maintained in SSP tables in MOSS 2007

The user profile properties values are stored in SSP tables in MOSS 2007. The values can be found in UserProfileValue table in SSP The values are stored for each of the Record ID. Each RecordID corresponds to one user. Also in the table, the values are given for each PropertyID The mapping of PropertyID and its corresponding description can be found in the table PropertyList. Note - it is not advisable to manipulate the SSP DB's.

RunTime Exception - Duplicate site id xxx-xxx-xxxx was found.

The error came when trying to install a hotfix/patch to the sharepoint server. The issue had occurred because there was an old copy of the database which was used for detach and attach. Had tried to create a new webapplication using a copy of the running webapplication in the same farm. It encountered error since there was a DB id conflict in the configuration DB. So deleted the web application, but the content DB had not been deleted completely. So ran the stsadm delete old database command to remove it Stsadm -o sync -deleteolddatabases 0 More about deleteolddatabase -  http://technet.microsoft.com/en-us/library/cc263196.aspx

Delete unwanted app pools in Sharepoint 2010

The powershell commands to delete the unwanted app pools in Sharepoint  Go to Programs --> Sharepoint 2010 Products --> Sharepoint 2010 management Shell Type the command -- Get-SPServiceApplicationPool | select Name It would display the set of names. Enter the below command to remove/delete the app pool Remove-SPServiceApplicationPool -Identity "<enter the unwanted app pool name>" It would ask for confirmation, enter 'Y' to complete the removal.