USE [LOISStatistik2] GO /****** Object: Table [dbo].[KL_monitorering_omraader] Script Date: 18-05-2021 14:23:14 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[KL_monitorering_omraader]( [DimGeometriId] [int] NOT NULL, [StatKortId] [int] NOT NULL, [Centroid_X] [decimal](18, 2) NULL, [Centroid_Y] [decimal](18, 2) NULL, [CentroidLat] [decimal](18, 6) NULL, [CentroidLong] [decimal](18, 6) NULL, [Geometri] [geometry] NULL, [size] [int] NULL, [image_URL] [nchar](250) NULL, [text] [nchar](250) NULL, [Map_ID] [nvarchar](60) NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO