I want to have a page on a remote site that selects a local CSV file as a data source which outputs to a GridView. What is the format of the source data and how is it transferred to the server in this instance?
Could it be retrieved in some way from a cache or the IIS logs? The data is mildly sensitive and I'd like to know the potential risks.
Here is the query, if it makes any difference:
SELECT [fullname] AS [Employee] ,
[reportsto] AS [Line manager],
COUNT([fullname]) AS [Occasions] ,
ROUND(SUM([dayslost]),2) AS [Days lost] ,
INT((COUNT([fullname]) *COUNT([fullname]))*SUM([dayslost])) AS [Bradford factor]
FROM [Staff absence reasons.csv]
WHERE UCASE([absencetype])='SELF CERTIFIED SICKNESS'
OR UCASE([absencetype])='DOCTOR CERTIFIED SICKNESS'
GROUP BY [fullname],
[reportsto]
ORDER BY 2 ASC,
5 DESC;