lowlydba.sqlserver.traceflag module – Enable or disable global trace flags on a SQL Server instance
Note
This module is part of the lowlydba.sqlserver collection (version 1.1.2).
To install it, use: ansible-galaxy collection install lowlydba.sqlserver
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: lowlydba.sqlserver.traceflag
.
New in lowlydba.sqlserver 0.1.0
Synopsis
Enable\Disable global trace flag on a SQL Instance. This trace flag takes affect immediatley and does not require SQL Instance restart.
This setting does not persist after restart.
Requirements
The below requirements are needed on the host that executes this module.
dbatools PowerShell module
Parameters
Parameter |
Comments |
---|---|
Flag to enable or disable the trace flag. Choices:
|
|
The SQL Server instance to modify. |
|
Password for SQL Authentication. |
|
Username for SQL Authentication. |
|
Trace Flag number. |
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: full |
Can run in check_mode and return changed status prediction without modifying target. |
|
Platforms: all |
Target OS/families that can be operated against. |
Examples
- name: Eliminate successful backup information from SQL Error Log
lowlydba.sqlserver.traceflag:
sql_instance: sql-01.myco.io
trace_flag: 3226
enabled: true
- name: Disable trace flag
lowlydba.sqlserver.traceflag:
sql_instance: sql-01.myco.io
trace_flag: 3226
enabled: false
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Output from the Returned: success, but not in check_mode. |