Recently I could not Check In multiple files using SharePoint Designer. The Check In context menu pick wasn't available and under the Edit menu it was disabled.
Thanks to a blog commenter, I learned that Ctrl+F5 will resolve the issue. Thanks Emmanuel
SharePoint, SQL Server, SAP-BPC and some miscellaneous topics like virtualization.
Wednesday, October 28, 2009
Tuesday, October 27, 2009
SQL Maintenance Plans
For each instance I like to make a single Maintenance plan with several subplans:
Subplans:
Maintenance Cleanup
Notify Operator
Subplans:
- System Databases Tasks
- Reorganize Index
- Update Statistics
- Back Up Database
- Check Database Integrity
- Notify Operator of Failure
- Notify Operator of Success
- User Databases Tasks
- Reorganize Index
- Update Statistics
- Back Up Database
- Check Database Integrity
- Notify Operator of Failure
- Notify Operator of Success
- Daily Transaction Logs Tasks
- Back Up Database (Transaction log type)
- Notify Operator of Success
- Notify Operator of Failure
- Hourly Transaction Logs Tasks
- Back Up Database (Transaction log type)
- Notify Operator of Success
- Notify Operator of Failure
- Cleanup Logs Tasks
- Back Up Database (Transaction log type)
- Notify Operator of Success
- Notify Operator of Failure
Maintenance Cleanup
Notify Operator
Monday, October 19, 2009
Documents Not Appearing in Search Results
I recently spent quite some time trying to understand why certain documents would appear in my search results, and others wouldn't.
I looked at the 'Always index all ASPX pages on this site' setting found at Site Settings > Search Visibility. But that didn't resolve the issue.
I looked at the 'Allow items from this document library to appear in search results?' setting found at Document Library Settings > Advanced Settings. But that didn't resolve the issue.
Finally I noticed that documents that appear in the search results have a major version (1.1) and the documents that do not appear, only have a minor version (0.1). So I published one of the documents, did an incremental crawl, and the document began appearing in the search results.
One mystery solved today.
I looked at the 'Always index all ASPX pages on this site' setting found at Site Settings > Search Visibility. But that didn't resolve the issue.
I looked at the 'Allow items from this document library to appear in search results?' setting found at Document Library Settings > Advanced Settings. But that didn't resolve the issue.
Finally I noticed that documents that appear in the search results have a major version (1.1) and the documents that do not appear, only have a minor version (0.1). So I published one of the documents, did an incremental crawl, and the document began appearing in the search results.
One mystery solved today.
Wednesday, October 14, 2009
Causing the Create Site link to Create a Site Collection
If you layout your MOSS intranet with the multiple Site Collections approach, you can simplify the creation of new Site Collections.
There are a couple settings which need to be setup for this to work:
Central Administration
- Central Administration > Application Management
- Under the Application Security section click on Self-service site management
- Turn, 'Enable Self-Service Site Creation' on
- It is optional to require a secondary contact in this form
- Click OK
Site Directory
- From within the site directory of the web application, go to Site Settings > Modify All Site Settings
- Under the "Site Collection Administration" area, click on "go to top-level site settings"
- Under the same "Site Collection administration" area, click "Site Directory Settings"
- Check '
- Click OK
Thanks to Dave Wollerman for this tip.
Wednesday, October 7, 2009
BPC Import Won't Complete
I find there are a couple reasons for an import into BPC to not complete, getting stuck on the the DumpLoad task:
- The first reason it stops at the DumpLoad task is there is alot of data and it just takes that long. You can always Abort the import and try importing a smaller set of data.
- The OutlookSoft SendGovernor Service is not started. This is usually the result of a server reboot. To check this out:
- Start > Run
- Type services.msc and press Enter
- Scroll down to the OutlookSoft SendGovernor Service
- Start the service if it is not running
- The other reason has to do with the dbo.lck[Application Name] table. So if the application name is Finance, then there are rows left in the dbo.lckFinance table. This can happen if an import errors out. To solve this:
- Verify no imports are occurring
- Check if there are any rows in the table: SELECT * from dbo.lckFinance
- If there are, remove them: DELETE dbo.lckFinance
Tuesday, October 6, 2009
Installing MOSS in VirtualBox Environment - Notes
Machine Environment:
Windows Server 2008 64bits Install the .NET Framework 3.0 Features Configure service accounts, see this for details. Have SQL Server prepared, preferabbly on another VM and using a named instance. In my case I had to put SQL on the same VM because networking between VMs was unstable.
MOSS Setup:
SharePoint Products and Technologies Wizard:
Create a new farm
Config DB Settings:
Administrator Tasks
READ FIRST
Displays the Quick Start Guide
Deploy Servers???
Nothing required for a small farm
Assign services to servers
Excel Calculation Services - just start it, no configuration required.
Configure Office SharePoint Server Search Service Settings
SSP Name - TurtleSSP
Create a new Web Application
NOTE: The SSP needs its own Web application. This will be the second web application for the system (Central Admin was the first).
IIS Web Site
MOSS_TurtleSSP - 9992 App Pool created
MOSS TurtleSSP - 9992 Web Site created
My Site Location
Create a new Web Application
NOTE: The SSP needs its own Web application. This will be the second web application for the system (Central Admin was the first).
IIS Web Site
MOSS_MySite - 9993 App Pool created
MOSS MySite - 9993 Web Site created
SSP Service Credentials
Service Account: spSsp (This account is for SSP Web services to use for inter-server comm and running SSP timer jobs)
SSP Database
Used for Service specific data
MOSS_TurtleSSP_Search DB created
TurtleSSP App Pool created (Don't recall the opp to name this MOSS_TurtleSSP, it appears to grab the name of the SSP)
Windows Server 2008 64bits Install the .NET Framework 3.0 Features Configure service accounts, see this for details. Have SQL Server prepared, preferabbly on another VM and using a named instance. In my case I had to put SQL on the same VM because networking between VMs was unstable.
MOSS Setup:
- Server Type: Select Advanced -> Complete install
- File Location: Install MOSS to non OS drive
- Before running the SharePoint Products and Technologies Wizard, neither any databases, application pools or web sites are created. However D:\Program Files\Microsoft Office Servers\12.0 is created.
SharePoint Products and Technologies Wizard:
Create a new farm
Config DB Settings:
- MOSS_Farm_Config
- spSql account for the database
- Port 9991
- Use NTLM authentication
- Create Config DB
- Install Help collections
- Securing SharePoint resources
- Registering SharePoint services
- Registering SharePoint features
- Provisioning Central Admin Web App
- Installing the application content files
- Finalizing the Products and Technologies configuration
- MOSS_Farm_Config DB
- SharePoint_AdminContent_GUID DB
- OfficeServerApplicationPool (NetworkService identity)
- SharePoint Central Administration Application Pool (spsqluser identity)
- Office Server Web Services Web Site - uses OfficeServer App Pool
- SharePoint Central Administration v3 Web Site
Administrator Tasks
READ FIRST
Displays the Quick Start Guide
Deploy Servers???
Nothing required for a small farm
Assign services to servers
Excel Calculation Services - just start it, no configuration required.
Configure Office SharePoint Server Search Service Settings
- Farm Search Service Account - spSearch
- Configuring this search doesn't create a database, app pool or web site
- Service Account - spSearch
- Content Access Account - spContentAccess
- Database MOSS_WSS_Search created
SSP Name - TurtleSSP
Create a new Web Application
NOTE: The SSP needs its own Web application. This will be the second web application for the system (Central Admin was the first).
IIS Web Site
- Description: MOSS TurtleSSP
- Port: 9992
- MOSS TurtleSSP - 9992
- Service Account: spAppPool
- DB Name: MOSS_TurtleSSP_Admin
MOSS_TurtleSSP - 9992 App Pool created
MOSS TurtleSSP - 9992 Web Site created
My Site Location
Create a new Web Application
NOTE: The SSP needs its own Web application. This will be the second web application for the system (Central Admin was the first).
IIS Web Site
- Description: MOSS MySite
- Port: 9993
- MOSS MySite - 9993
- Service Account: spAppPool
- DB Name: MOSS_TurtleSSP_MySite_Content)
MOSS_MySite - 9993 App Pool created
MOSS MySite - 9993 Web Site created
SSP Service Credentials
Service Account: spSsp (This account is for SSP Web services to use for inter-server comm and running SSP timer jobs)
SSP Database
Used for Service specific data
- DB Name: MOSS_TurtleSSP_Content
- DB Name: MOSS_TurtleSSP_Search
MOSS_TurtleSSP_Search DB created
TurtleSSP App Pool created (Don't recall the opp to name this MOSS_TurtleSSP, it appears to grab the name of the SSP)
Friday, October 2, 2009
SP 2007: New Web Application, Site Collection and Document Center in a VirtualBox Environment
Create New Web Application
IIS Web Site
MOSS Web App Web - 80 Site created
MOSS Web App - 80 App Pool created
Create New Site Collection
Title and Description
IIS Web Site
- Description: MOSS Web App - 80 (Consider TurtlePoint Web App - 80)
- Port: 80
- App Pool Name: MOSS Web App - 80 (Consider TurtlePoint Web App - 80)
- Account: spAppPool
- DB Name: MOSS_WebApp_Content
MOSS Web App Web - 80 Site created
MOSS Web App - 80 App Pool created
Create New Site Collection
Title and Description
- Title: Turtle Point
- Publishing > Collaboration Portal
- TURTLELLC\Administrator
Subscribe to:
Posts (Atom)