Skip to content

Commit 16d00ae

Browse files
authored
Broken link removed
1 parent 47dfac4 commit 16d00ae

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

docs/t-sql/functions/partition-transact-sql.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ GO
7171
### B. Getting the number of rows in each nonempty partition of a partitioned table or index
7272
The following example returns the number of rows in each partition of table `TransactionHistory` that contains data. The `TransactionHistory` table uses partition function `TransactionRangePF1` and is partitioned on the `TransactionDate` column.
7373

74-
To execute this example, you must first run the PartitionAW.sql script against the [!INCLUDE[ssSampleDBobject](../../includes/sssampledbobject-md.md)] sample database. For more information, see [PartitioningScript](https://go.microsoft.com/fwlink/?LinkId=201015).
74+
To execute this example, you must first run the PartitionAW.sql script against the [!INCLUDE[ssSampleDBobject](../../includes/sssampledbobject-md.md)] sample database.
7575

7676
```sql
7777
USE AdventureWorks2012;
@@ -87,7 +87,7 @@ GO
8787
The following example returns all rows that are in partition `5` of the table `TransactionHistory`.
8888

8989
> [!NOTE]
90-
> To execute this example, you must first run the PartitionAW.sql script against the [!INCLUDE[ssSampleDBobject](../../includes/sssampledbobject-md.md)] sample database. For more information, see [PartitioningScript](https://go.microsoft.com/fwlink/?LinkId=201015).
90+
> To execute this example, you must first run the PartitionAW.sql script against the [!INCLUDE[ssSampleDBobject](../../includes/sssampledbobject-md.md)] sample database.
9191
9292
```sql
9393
SELECT * FROM Production.TransactionHistory
@@ -96,5 +96,4 @@ WHERE $PARTITION.TransactionRangePF1(TransactionDate) = 5 ;
9696

9797
## See Also
9898
[CREATE PARTITION FUNCTION (Transact-SQL)](../../t-sql/statements/create-partition-function-transact-sql.md)
99-
100-
99+

0 commit comments

Comments
 (0)