Showing posts with label Sharepoint. Show all posts
Showing posts with label Sharepoint. Show all posts

Thursday, 3 March 2022

Sharepoint - Permissions on a single Page

If you want to set permissions on a single page within a site then:

 

In Site Content go to the Site Pages library. Then set the permissions on a page level the same way you would set permissions on a document, folder or site.

Friday, 31 January 2014

Reduce Shareweddb_log file size

Use SQL Management Studio & connect to ##SSEE database

Choose the ShareWebDB

New query & run below to reduce log file size

USE ShareWebDb
 GO
 DBCC SHRINKFILE(ShareWebDb_log, 1)
 BACKUP LOG ShareWebDb WITH TRUNCATE_ONLY
 DBCC SHRINKFILE(ShareWebDb_log, 1)
 GO