Skip to content

Commit 4a47ccc

Browse files
authored
Add new argument for multi-line comment
1 parent a19d186 commit 4a47ccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQL Server Name Convention and T-SQL Programming Style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ SQL Server T-SQL Coding Conventions, Best Practices, and Programming Guidelines.
263263
[here](https://sqlblog.org/2019/09/12/bad-habits-to-kick-avoiding-the-schema-prefix).
264264
- Delimiters: **spaces** (not tabs).
265265
- <a id="sql-comment"></a> Always use multi-line comment `/* */` instead in-line comment `--` in production code due to potential formating problems in different tools and programs.
266-
More details [here](https://www.brentozar.com/archive/2021/04/never-ever-ever-start-t-sql-comments-with-two-dashes/) and [here](https://sqlkover.com/ssis-and-the-ora-00907-missing-right-parenthesis-error/).
266+
More details [here](https://www.brentozar.com/archive/2021/04/never-ever-ever-start-t-sql-comments-with-two-dashes/), [here](https://sqlkover.com/ssis-and-the-ora-00907-missing-right-parenthesis-error/), and [here](https://docs.microsoft.com/troubleshoot/sql/admin/crashes-run-oracle-linked-server-query).
267267
- Never use asterisk (`*`) in select statements `SELECT *` and `INSERT` statements, use explicit column names.
268268
Main problems are: traffic issues, Memory Grants issues, Index usage issues.
269269
**Only one exception, see it below.**

0 commit comments

Comments
 (0)