USE [AdventureWorksDW2019]
GO
CREATE TABLE [dbo].[FactProductInventory_ps]
(
[ProductKey] [int] NOT NULL,
[DateKey] [int] NOT NULL,
[MovementDate] [date] NOT NULL,
[UnitCost] [money] NOT NULL,
[UnitsIn] [int] NOT NULL,
[UnitsOut] [int] NOT NULL,
[UnitsBalance] [int] NOT NULL )
ON [PS_dbo.FactProductInventory_DateKey] ([DateKey]);