Project Status
Create Table CREATE TABLE [dbo].[d_status]( [id] [int] IDENTITY(1,1) NOT NULL, [source_id] [int] NULL, [parent_code] varchar NOT NULL, [linked_id] [int] NULL, [created_date] [datetime] NULL, [modified_date] [datetime] NULL, [authored_by] varchar NULL, [sort_order] [int] NULL, [item_status] [int] NULL, [item_code] varchar NOT NULL, [item_desc] varchar NULL, [item_label] varchar NOT NULL, PRIMARY KEY CLUSTERED ( [id] ASC )WITH (STATISTICS_NORECOMPUTE = … Read more