Azure – Please help me to find out a mistake in design table
I have designed a PurchaseOrder table - with partioning on CreatedDate column - In Visual Studion Data Tool as follow: CREATE TABLE [dbo].[PurchaseOrder] ( [IdGlobal] UNIQUEIDENTIFIER NOT NULL DEFAULT NEWID(), [IdLocal] BIGINT NOT NULL, [CreatedDate] DATE DEFAULT (getdate()) NOT NULL,…