diff --git a/mssql_python/cursor.py b/mssql_python/cursor.py index 3acbffcc..4e25a4be 100644 --- a/mssql_python/cursor.py +++ b/mssql_python/cursor.py @@ -2627,12 +2627,6 @@ def _bulkcopy( if not params.get("server"): raise ValueError("SERVER parameter is required in connection string") - if not params.get("database"): - raise ValueError( - "DATABASE parameter is required in connection string for bulk copy. " - "Specify the target database explicitly to avoid accidentally writing to system databases." - ) - # Translate parsed connection string into the dict py-core expects. pycore_context = connstr_to_pycore_params(params)