To update table data on our website (PEBL.dk), from within Stata, I need to be able to write csv-files over Internet to be stored in a Microsoft Azure storage account.
Our CMS software then automatically reads the csv-files from this storage account.
I can manually upload a csv-file to the Microsoft Azure storage account.
From within Stata, I am able to read in the csv-file from the storage account using the -import- command:
. import delimited https://paestoragep01.blob.core.wind...b-p01/Test.csv
(encoding automatically selected: ISO-8859-1)
(8 vars, 30 obs)
When I then try to export data to the same place, I get the following error:
. export delimited using https://paestoragep01.blob.core.wind...b-p01/Test.csv, replace
may not write files over Internet
r(603);
Is there a way around this limitation?
Or, do you know how to manage this procedure in some other way?
The problem is that our CMS software needs to read in csv-files from an internet url!
Best regards,
Kim
Our CMS software then automatically reads the csv-files from this storage account.
I can manually upload a csv-file to the Microsoft Azure storage account.
From within Stata, I am able to read in the csv-file from the storage account using the -import- command:
. import delimited https://paestoragep01.blob.core.wind...b-p01/Test.csv
(encoding automatically selected: ISO-8859-1)
(8 vars, 30 obs)
When I then try to export data to the same place, I get the following error:
. export delimited using https://paestoragep01.blob.core.wind...b-p01/Test.csv, replace
may not write files over Internet
r(603);
Is there a way around this limitation?
Or, do you know how to manage this procedure in some other way?
The problem is that our CMS software needs to read in csv-files from an internet url!
Best regards,
Kim
Comment