Skip to content

Commit 8d58c77

Browse files
authored
Merge pull request #272 from MicrosoftDocs/textcsv-quick-patch
Remove extra period from sentence with quote
2 parents 28f1e9d + 22f3dd6 commit 8d58c77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powerquery-docs/Connectors/TextCSV.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ In rare cases, a document that has similar comma numbers across paragraphs might
150150

151151
### Error: Connection closed by host
152152

153-
When loading Text/CSV files from a web source and also promoting headers, you might sometimes encounter the following errors: ```“An existing connection was forcibly closed by the remote host”``` or ```“Received an unexpected EOF or 0 bytes from the transport stream.”```. These errors might be caused by the host employing protective measures and closing a connection which might be temporarily paused, for example, when waiting on another data source connection for a join or append operation. To work around these errors, try adding a [Binary.Buffer](https://docs.microsoft.com/powerquery-m/binary-buffer) (recommended) or [Table.Buffer](https://docs.microsoft.com/powerquery-m/table-buffer) call, which will download the file, load it into memory, and immediately close the connection. This should prevent any pause during download and keep the host from forcibly closing the connection before the content is retrieved.
153+
When loading Text/CSV files from a web source and also promoting headers, you might sometimes encounter the following errors: ```“An existing connection was forcibly closed by the remote host”``` or ```“Received an unexpected EOF or 0 bytes from the transport stream.”``` These errors might be caused by the host employing protective measures and closing a connection which might be temporarily paused, for example, when waiting on another data source connection for a join or append operation. To work around these errors, try adding a [Binary.Buffer](https://docs.microsoft.com/powerquery-m/binary-buffer) (recommended) or [Table.Buffer](https://docs.microsoft.com/powerquery-m/table-buffer) call, which will download the file, load it into memory, and immediately close the connection. This should prevent any pause during download and keep the host from forcibly closing the connection before the content is retrieved.
154154

155155
The following example illustrates this workaround. This buffering needs to be done before the resulting table is passed to ```Table.PromoteHeaders```.
156156
* Original:

0 commit comments

Comments
 (0)