Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. SET ANSI_NULLS ON
  2. GO
  3. SET QUOTED_IDENTIFIER ON
  4. GO
  5. CREATE TABLE [dbo].[stations_metadata](
  6. [serienr_station] [nvarchar](max) NULL,
  7. [naam_station] [nvarchar](max) NULL,
  8. [ontwerpvermogen_station] [real] NULL,
  9. [serienr_warmtemeter] [nvarchar](50) NULL,
  10. [serienr_extra_teller] [nvarchar](50) NULL,
  11. [tabel_referentie] [nvarchar](50) NULL,
  12. [verwacht_verbruik] [real] NULL
  13. ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
  14. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement