We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ErikEJ/SqlServer.Rules'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
SRD0041.md•671 B
# SQL Server Rule: SRD0041
| | |
|----|----|
| Assembly | SqlServer.Rules |
| Namespace | SqlServer.Rules.Design |
| Class | AvoidSelectIntoRule |
## Rule Information
| | |
|----|----|
| Id | SRD0041 |
| Friendly Name | Avoid SELECT INTO temp or table variables |
| Category | Design |
| Ignorable | true |
| Applicable Types | Procedure |
| | Scalar Function |
| | Table Valued Function |
## Description
Avoid use of the SELECT INTO syntax.
## Summary
Avoid using SELECT INTO to create temp tables or table variables. Create these tables normally using a DECLARE or CREATE statement.
<sub><sup>Generated by a tool</sup></sub>