Does anyone know what this data type is; Below is the table definition. It is running on SQL server 2017 with dbo.ident, dbo.zint datatype that I have never seen. Please advise. Thank you!
CREATE TABLE [dbo].[table](
[tableid] [dbo].[ident] NOT NULL,
[description] [dbo].[shortdesctype] NOT NULL,
[source] [dbo].[ident] NOT NULL,
[countper1000] [dbo].[zint] NOT NULL,
[bestpractice] [char](30) NOT NULL,
[createid] [dbo].[udtuserid] NOT NULL,
[createdate] [dbo].[createdatetype] NOT NULL,
[updateid] [dbo].[udtuserid] NOT NULL,
[lastupdate] [dbo].[lastupdatetype] NOT NULL,
CONSTRAINT [PKtableid] PRIMARY KEY CLUSTERED
(
[tableid] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 80) ON [primary]
) ON [primary]
GO