Skip to content

Commit f7c4e20

Browse files
committed
sentence case
1 parent 170724e commit f7c4e20

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/tools/sqlpackage/troubleshooting-import-export-sqlpackage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.date: 5/5/2021
1616

1717
In some scenarios, import or export operations take longer than expected or fail to complete. The following are some frequently suggested tactics to troubleshoot import and export operations. While reading the specific documentation page for each action to understand the available parameters and properties is recommended, this article serves as a starting point in investigating SqlPackage Import or Export operations.
1818

19-
## Overall Strategies
19+
## Overall strategies
2020
As general guideline, better performance can be obtained via the .NET Core version of SqlPackage.exe.
2121

2222
For issues related to timeouts, the properties `CommandTimeout` and `LongRunningCommandTimeout` can be used to tune the connection between SqlPackage.exe and the SQL instance.
@@ -29,15 +29,15 @@ Additional performance-related trace data can be logged by setting the environme
2929
Set-Item -Path Env:DACFX_PERF_TRACE -Value true
3030
```
3131

32-
## Import action Tips
32+
## Import action tips
3333
For imports that contain large tables or tables with many indexes, the use of `/p:RebuildIndexesOfflineForDataPhase=True` or `/p:DisableIndexesForDataPhase=False` may improve performance. These properties modify the index rebuild operation to occur offline or not occur, respectively. Those and other properties are available to tune the [SqlPackage.exe Import](sqlpackage-import.md) operation.
3434

35-
## Export action Tips
35+
## Export action tips
3636
As an alternative operation to obtain the database schema and data while skipping the schema validation, perform an [Extract](sqlpackage-extract.md) with `/p:ExtractAllTableData=True` and `/p:VerifyExtraction=True`.
3737

3838
In scenarios where disk space is limited and runs out during the export, the use of `/p:TempDirectoryForTableData` allows the data for export to be buffered on an alternative disk. That and other properties are available to tune the [SqlPackage.exe Export](sqlpackage-export.md) operation.
3939

40-
## Next Steps
40+
## Next steps
4141

4242
- Learn more about [SqlPackage Import](sqlpackage-import.md)
4343
- Learn more about [SqlPackage Export](sqlpackage-export.md)

0 commit comments

Comments
 (0)