# SQL Server Rule: SRD0051
| | |
|----|----|
| Assembly | SqlServer.Rules |
| Namespace | SqlServer.Rules.Design |
| Class | DoNotUseDeprecatedTypesRule |
## Rule Information
| | |
|----|----|
| Id | SRD0051 |
| Friendly Name | Do Not Use Deprecated Types Rule |
| Category | Design |
| Ignorable | |
| Applicable Types | Table |
## Description
Don't use deprecated TEXT, NTEXT and IMAGE data types.
### Examples
```sql
Create Table dbo.SomeText
(
ID integer primary key,
[SomeText] TEXT NULL
)
-- SML047, SRD0051, SRN0007
```
<sub><sup>Generated by a tool</sup></sub>