diff --git a/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php b/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php
index ce924bd0802351efb30d2e8b3c7c1a204c359502..bccab3ae8367ebc632d644c7332c1416fe57e34e 100644
--- a/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php
+++ b/typo3/sysext/lowlevel/Classes/Command/OrphanRecordsCommand.php
@@ -102,7 +102,8 @@ Manual repair suggestions:
                 ->where(
                     $queryBuilder->expr()->notIn(
                         'uid',
-                        $queryBuilder->createNamedParameter($idList, Connection::PARAM_INT_ARRAY)
+                        // do not use named parameter here as the list can get too long
+                        array_map('intval', $idList)
                     )
                 )
                 ->orderBy('uid')