USE [logging2006] GO /****** Object: Table [dbo].[Asset_HW_EntityPhysical] Script Date: 10-05-2020 21:06:18 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_PADDING ON GO CREATE TABLE [dbo].[Asset_HW_EntityPhysical]( [entIndex] [int] NULL, [entPhysicalIndex] [int] NULL, [entPhysicalDescr] [varchar](128) NULL, [entPhysicalVendorType] [varchar](50) NULL, [entPhysicalContainedIn] [int] NULL, [entPhysicalClass] [int] NULL, [entPhysicalParentRelPos] [int] NULL, [entPhysicalName] [varchar](128) NULL, [entPhysicalHardwareRev] [varchar](50) NULL, [entPhysicalFirmwareRev] [varchar](50) NULL, [entPhysicalSoftwareRev] [varchar](50) NULL, [entPhysicalSerialNum] [varchar](50) NULL, [entPhysicalMfgName] [varchar](50) NULL, [entPhysicalModelName] [varchar](50) NULL, [entPhysicalAlias] [varchar](50) NULL, [entPhysicalAssetID] [varchar](50) NULL, [entPhysicalFRU] [varchar](50) NULL, [deviceId] [varchar](50) NULL ) ON [PRIMARY] GO SET ANSI_PADDING OFF GO