Grazie Gibra,
ho imparato una cosa nuova che mi sarà sicuramente molto utile per le mie attività.
Invece, per quanto riguarda il mio problema, continuo a non vedere le tabelle con i dati che mi interessano (cioè quelli che scarico su XLSX)...
In pratica per accedere al DB SQL possiamo utilizzare solo dei file XLSX in cui è presente una pivot linkata ad una sola tabella presente su un DB SQLServer, effettuando l'aggiornamento dei dati della pivot scarichiamo in locale anche il dettaglio dei record. Il problema è che il file XLSX ha un limite di record e per leggerli tutti in un unico file pensavo di utilizzare Access. (con la logica se funziona con Excel voul dire che le credenziali sono corrette e le posso utilizzare anche su Access).
Il vero problema è che il DB Manager non è molto collaborativo (altrimenti non servirebbe il vostro aiuto...) e io volevo cercare di lavorare in modo più pulito...
Ho provato anche a esportare da Excel il file di connessione .ODC ma non sono riuscito ad utilizzarlo da Access: qualcuno sa come fare?
grazie
di seguito il file .odc creato da Excel
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/x-ms-odc; charset=utf-8">
<meta name=ProgId content=ODC.Table>
<meta name=SourceType content=OLEDB>
<title>Connessione</title>
<xml id=docprops><o:DocumentProperties
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns="http://www.w3.org/TR/REC-html40">
<o:Name>Connessione</o:Name>
</o:DocumentProperties>
</xml><xml id=msodc><odc:OfficeDataConnection
xmlns:odc="urn:schemas-microsoft-com:office:odc"
xmlns="http://www.w3.org/TR/REC-html40">
<odc:Connection odc:Type="OLEDB">
<odc:ConnectionString>Provider=SQLOLEDB.1;Password=xxxx;Persist Security Info=True;User ID=xxxx;Initial Catalog=Cruscotto;Data Source=10.38.111.111;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=000A0005C04624;Use Encryption for Data=False;Tag with column collation when possible=False</odc:ConnectionString>
<odc:CommandType>Default</odc:CommandType>
<odc:CommandText>CruscottoGEOGRAFICO "YVO2VPY5UTKBU4ISFRKD","2016","02000033"</odc:CommandText>
</odc:Connection>
</odc:OfficeDataConnection>
</xml>
<style>
<!--
.ODCDataSource
{
behavior: url(dataconn.htc);
}
-->
</style>
</head>
<body onload='init()' scroll=no leftmargin=0 topmargin=0 rightmargin=0 style='border: 0px'>
<table style='border: solid 1px threedface; height: 100%; width: 100%' cellpadding=0 cellspacing=0 width='100%'>
<tr>
<td id=tdName style='font-family:arial; font-size:medium; padding: 3px; background-color: threedface'>
</td>
<td id=tdTableDropdown style='padding: 3px; background-color: threedface; vertical-align: top; padding-bottom: 3px'>
</td>
</tr>
<tr>
<td id=tdDesc colspan='2' style='border-bottom: 1px threedshadow solid; font-family: Arial; font-size: 1pt; padding: 2px; background-color: threedface'>
</td>
</tr>
<tr>
<td colspan='2' style='height: 100%; padding-bottom: 4px; border-top: 1px threedhighlight solid;'>
<div id='pt' style='height: 100%' class='ODCDataSource'></div>
</td>
</tr>
</table>
<script language='javascript'>
function init() {
var sName, sDescription;
var i, j;
try {
sName = unescape(location.href)
i = sName.lastIndexOf(".")
if (i>=0) { sName = sName.substring(1, i); }
i = sName.lastIndexOf("/")
if (i>=0) { sName = sName.substring(i+1, sName.length); }
document.title = sName;
document.getElementById("tdName").innerText = sName;
sDescription = document.getElementById("docprops").innerHTML;
i = sDescription.indexOf("escription>")
if (i>=0) { j = sDescription.indexOf("escription>", i + 11); }
if (i>=0 && j >= 0) {
j = sDescription.lastIndexOf("</", j);
if (j>=0) {
sDescription = sDescription.substring(i+11, j);
if (sDescription != "") {
document.getElementById("tdDesc").style.fontSize="x-small";
document.getElementById("tdDesc").innerHTML = sDescription;
}
}
}
}
catch(e) {
}
}
</script>
</body>
</html>