Skip to content

Commit c1271b3

Browse files
authored
Merge pull request MicrosoftDocs#836 from tseward/patch-469
Update Get-SPProjectDatabaseUsage.md
2 parents df8fbe3 + d133a48 commit c1271b3

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

sharepoint/sharepoint-ps/sharepoint-server/Get-SPProjectDatabaseUsage.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ schema: 2.0.0
88
# Get-SPProjectDatabaseUsage
99

1010
## SYNOPSIS
11-
{{Fill in the Synopsis}}
11+
Returns an approximate size, in megabytes (MB) of the Project Web App data used in the content database.
1212

1313
## SYNTAX
1414

@@ -17,21 +17,23 @@ Get-SPProjectDatabaseUsage [-AssignmentCollection <SPAssignmentCollection>] -Url
1717
```
1818

1919
## DESCRIPTION
20-
{{Fill in the Description}}
20+
Returns an approximate size, in megabytes (MB) of the Project Web App data used in the content database.
2121

2222
## EXAMPLES
2323

2424
### Example 1
2525
```
26-
PS C:\> {{ Add example code here }}
26+
PS C:\>Get-SPProjectDatabaseUsage -Url http://contoso.com/sites/pwa
2727
```
2828

29-
{{ Add example description here }}
29+
This example shows the size of the Project Web App data in the content data for the Project Web App site at http://contoso.com/sites/pwa.
3030

3131
## PARAMETERS
3232

3333
### -AssignmentCollection
34-
{{Fill AssignmentCollection Description}}
34+
Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
35+
36+
When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.
3537

3638
```yaml
3739
Type: SPAssignmentCollection
@@ -47,7 +49,7 @@ Accept wildcard characters: False
4749
```
4850
4951
### -Url
50-
{{Fill Url Description}}
52+
The URL of the Project Web App site collection.
5153
5254
```yaml
5355
Type: Uri

0 commit comments

Comments
 (0)