Skip to content

Commit d12164a

Browse files
authored
Merge pull request #7802 from mjswart-d2l/patch-2
Fix name of Adventureworks database in example.
2 parents f5a2ba8 + 5e1a8a5 commit d12164a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/relational-databases/system-stored-procedures/sp-spaceused-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ If *objname* is omitted, the value of oneresultset is 1, and *include_total_xtp_
186186
The following example reports disk space information for the `Vendor` table and its indexes.
187187

188188
```sql
189-
USE AdventureWorks2012;
189+
USE AdventureWorks2016;
190190
GO
191191
EXEC sp_spaceused N'Purchasing.Vendor';
192192
GO
@@ -196,7 +196,7 @@ GO
196196
The following example summarizes space used in the current database and uses the optional parameter `@updateusage` to ensure current values are returned.
197197

198198
```sql
199-
USE AdventureWorks008R2;
199+
USE AdventureWorks2016;
200200
GO
201201
EXEC sp_spaceused @updateusage = N'TRUE';
202202
GO

0 commit comments

Comments
 (0)