<p><strong>Via SSMS :</strong></p>
<ol>
<li>Copiez les données dans Excel (Ctrl+C)</li>
<li>Dans SSMS, clic droit sur la table > Edit Top 200 Rows</li>
<li>Sélectionnez la ligne vide et collez (Ctrl+V)</li>
</ol>
<p><strong>Via Import Wizard :</strong></p>
<ol>
<li>Clic droit sur la base de données > Tasks > Import Data</li>
<li>Source : Microsoft Excel</li>
<li>Suivez l’assistant</li>
</ol>
<p><strong>Via PowerShell avec ImportExcel :</strong></p>
<pre data-code-wrap="powershell"><code class="lang-powershell">Import-Excel fichier.xlsx | Write-SqlTableData -ServerInstance "serveur" -DatabaseName "db" -TableName "table"
</code></pre>