mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-09 01:32:38 -05:00
Add AQL Assessment service (#946)
[SQL Assessment API](https://docs.microsoft.com/en-us/sql/sql-assessment-api/sql-assessment-api-overview) provides a mechanism to evaluate the configuration of SQL Server for best practices. SQL Assessment API gives a list of recommended actions to improve SQL Server performance or security. The SQL Assessment service is used by the expected SQL Assessment feature of Azure Data Studio. SqlAssessmentService forwards JSONRPC calls to SQL Assessment engine and wraps results as a response. `assessment/getAssessmentItems` returns a set of checks applicable to a given target. `assessment/invoke` returns a set of recommendations for improving SQL Server instance or database configurations. `assessment/generateScript` returns a T-SQL script for storing an assessment result set to a SQL data table.
This commit is contained in:
@@ -2056,6 +2056,32 @@
|
||||
<target state="new">Encountered unsupported token {0}</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SqlAssessmentOperationExecuteCalledTwice">
|
||||
<source>A SQL Assessment operation's Execute method should not be called more than once</source>
|
||||
<target state="new">A SQL Assessment operation's Execute method should not be called more than once</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SqlAssessmentGenerateScriptTaskName">
|
||||
<source>Generate SQL Assessment script</source>
|
||||
<target state="new">Generate SQL Assessment script</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SqlAssessmentQueryInvalidOwnerUri">
|
||||
<source>Not connected to a server</source>
|
||||
<target state="new">Not connected to a server</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SqlAssessmentConnectingError">
|
||||
<source>Cannot connect to the server</source>
|
||||
<target state="new">Cannot connect to the server</target>
|
||||
<note></note>
|
||||
</trans-unit>
|
||||
<trans-unit id="SqlAssessmentUnsuppoertedEdition">
|
||||
<source>Unsupported engine edition {0}</source>
|
||||
<target state="new">Unsupported engine edition {0}</target>
|
||||
<note>.
|
||||
Parameters: 0 - editionCode (int) </note>
|
||||
</trans-unit>
|
||||
</body>
|
||||
</file>
|
||||
</xliff>
|
||||
Reference in New Issue
Block a user