Skip to content

Commit 98ab98c

Browse files
committed
Use CSV file hosted on download.microsoft.com
1 parent 06df167 commit 98ab98c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

articles/postgresql/hyperscale/howto-app-stacks-Csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ The COPY command can yield [tremendous throughput](https://www.citusdata.com/blo
274274

275275
The following code is an example for copying data from a CSV file to a database table.
276276

277-
It requires the file [pharmacies.csv](TODO.csv).
277+
It requires the file [pharmacies.csv](https://download.microsoft.com/download/d/8/d/d8d5673e-7cbf-4e13-b3e9-047b05fc1d46/pharmacies.csv).
278278

279279
```csharp
280280
using Npgsql;

articles/postgresql/hyperscale/howto-app-stacks-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ The COPY command can yield [tremendous throughput](https://www.citusdata.com/blo
471471

472472
The following code is an example for copying data from a CSV file to a database table.
473473

474-
It requires the file [pharmacies.csv](TODO.csv).
474+
It requires the file [pharmacies.csv](https://download.microsoft.com/download/d/8/d/d8d5673e-7cbf-4e13-b3e9-047b05fc1d46/pharmacies.csv).
475475

476476
```java
477477
public static long copyFromFile(Connection connection, String filePath, String tableName)

articles/postgresql/hyperscale/howto-app-stacks-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ npm install pg-copy-streams
279279
```
280280

281281
The following code is an example for copying data from a CSV file to a database table.
282-
It requires the file [pharmacies.csv](TODO.csv).
282+
It requires the file [pharmacies.csv](https://download.microsoft.com/download/d/8/d/d8d5673e-7cbf-4e13-b3e9-047b05fc1d46/pharmacies.csv).
283283

284284
```javascript
285285
// copy.js

articles/postgresql/hyperscale/howto-app-stacks-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The COPY command can yield [tremendous throughput](https://www.citusdata.com/blo
164164

165165
The following code is an example for copying data from a CSV file to a database table.
166166

167-
It requires the file [pharmacies.csv](TODO.csv).
167+
It requires the file [pharmacies.csv](https://download.microsoft.com/download/d/8/d/d8d5673e-7cbf-4e13-b3e9-047b05fc1d46/pharmacies.csv).
168168

169169
```python
170170
with open('pharmacies.csv', 'r') as f:

articles/postgresql/hyperscale/howto-app-stacks-ruby.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ The COPY command can yield [tremendous throughput](https://www.citusdata.com/blo
181181

182182
The following code is an example for copying data from a CSV file to a database table.
183183

184-
It requires the file [pharmacies.csv](TODO.csv).
184+
It requires the file [pharmacies.csv](https://download.microsoft.com/download/d/8/d/d8d5673e-7cbf-4e13-b3e9-047b05fc1d46/pharmacies.csv).
185185

186186
```ruby
187187
require 'pg'

0 commit comments

Comments
 (0)