diff --git a/src/tap/db/JDBCConnection.java b/src/tap/db/JDBCConnection.java
index 59e259271d48603342d3ea1f45490739f28d5f32..4d3861925d3847dc897a37a6bfcd77a151f7c094 100644
--- a/src/tap/db/JDBCConnection.java
+++ b/src/tap/db/JDBCConnection.java
@@ -1982,14 +1982,14 @@ public class JDBCConnection implements DBConnection {
 			stmt.executeUpdate(sqlBuf.toString());
 
 			// 3. Fill the table:
-			fillUploadedTable(tableDef, data);
+			int nbUploadedRows = fillUploadedTable(tableDef, data);
 
 			// Commit the transaction:
 			commit();
 
 			// Log the end:
 			if (logger != null)
-				logger.logDB(LogLevel.INFO, this, "TABLE_CREATED", "Table \"" + tableDef.getADQLName() + "\" (in DB: " + translator.getTableName(tableDef, supportsSchema) + ") created.", null);
+				logger.logDB(LogLevel.INFO, this, "TABLE_CREATED", "Table \"" + tableDef.getADQLName() + "\" (in DB: " + translator.getTableName(tableDef, supportsSchema) + ") created (" + nbUploadedRows + " rows).", null);
 
 			return true;