Last Updated: 9/24/2025 12:09:38 PM
Intergy Version: 22.00.00.00
PersonName
Table Definition  Parent Tables  Child Tables
Table Definition| Field | Datatype | Default | Null Option | Comment |
|---|---|---|---|---|
| PersonHistorySID | INTEGER | ?   | MANDATORY | System generated unique ID using the "Entity" sequence. |
| PersonID | INTEGER | ?   | MANDATORY | FK - Person |
| LastName | CHAR(35) |   | MANDATORY | User entered last name of the person. |
| FirstName | CHAR(35) |   | MANDATORY | User entered first name of the person. |
| MiddleName | CHAR(35) |   | OPTIONAL | User entered middle name of person. |
| NameSuffix | CHARACTER(20) |   | OPTIONAL | User entered name suffix (e.g. Jr. , M.D. , etc.). |
| Primary | CHARACTER(1) |   | MANDATORY | Y '- Current name of Person, 'N' -Alternate name. |
| TimeStamp | CHARACTER(14) |   | OPTIONAL | System generated date/time stamp record was last written. |
| LastUser | INTEGER | ?   | OPTIONAL | User ID of user that last wrote the record. |
| CreateStamp | CHARACTER(14) |   | OPTIONAL | System generated date/time stamp record was created. |
| CreateUser | INTEGER | ?   | OPTIONAL | User ID of user that created the record. |
| IsBirthName | LOGICAL | Logical_False   | OPTIONAL | Is the name Birthname or not |
| Parent Table | Join Phrase | When deleting parent record... |
|---|---|---|
| Person | PersonName.PersonID = Person.PersonID | CASCADE if PersonName exists |
| PersonHistory | PersonName.PersonHistorySID = PersonHistory.PersonHistorySID | CASCADE if PersonName exists |
| Child Table | Join Phrase | When deleting PersonName record... |
|---|---|---|
| PracPersonName | PracPersonName.PersonHistorySID = PersonName.PersonHistorySID | CASCADE if PracPersonName exists |