diff --git a/process/Sql_lib/process.js b/process/Sql_lib/process.js
index a90cc00642da75527b46ee64f4f9bede74646ae8..fad01349a3797469eeb067bbc603861f2e6df144 100644
--- a/process/Sql_lib/process.js
+++ b/process/Sql_lib/process.js
@@ -946,8 +946,9 @@ SqlBuilder._ERROR_UPDATE_VALUES_INVALID = function ()
  */
 SqlBuilder.begin = function ()
 {
-    logging.log("Warning: using .where with a SqlCondition as pFieldOrCond is deprecated. The SqlCondition will be removed in version >= 2020.x\n"
-            + "For SqlBuilder usage see the documentation-property of the Sql_lib.");
+    logging.log("Warning: using .begin is deprecated as it's now possible to write \"new SqlBuilder().select(...).from(...)....\"\n"
+            + "You can now use \"newSelect(...)\", \"newWhere(...)\", \"newWhereIfSet(...)\" or \"new SqlBuilder()\" to create a new SqlBuilder instance.\n" +
+            + "For further SqlBuilder usage see the documentation-property of the Sql_lib.");
     return new SqlBuilder();
 }