
[dbo].[workloadconfigurationall]
CREATE TABLE [dbo].[workloadconfigurationall]
(
[hwuuid] [char] (36) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Desktop] [int] NOT NULL,
[Laptop] [int] NOT NULL,
[Server] [int] NOT NULL,
[Application Development] [int] NOT NULL,
[Database Software] [int] NOT NULL,
[Graphics and Presentation] [int] NOT NULL,
[Internet and Information Servers] [int] NOT NULL,
[Microsoft Office Software] [int] NOT NULL,
[Multimedia Tools and Utilities] [int] NOT NULL,
[Web Development and Publishing] [int] NOT NULL,
[hwprocspeed] [int] NOT NULL,
[hwmem] [int] NOT NULL,
[fssize] [float] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[workloadconfigurationall] ADD CONSTRAINT [PK__workloadconfigur__75788D8D] PRIMARY KEY CLUSTERED ([hwuuid]) ON [PRIMARY]
GO
GRANT SELECT ON [dbo].[workloadconfigurationall] TO [aiadmin]
GRANT INSERT ON [dbo].[workloadconfigurationall] TO [aiadmin]
GRANT DELETE ON [dbo].[workloadconfigurationall] TO [aiadmin]
GRANT UPDATE ON [dbo].[workloadconfigurationall] TO [aiadmin]
GRANT SELECT ON [dbo].[workloadconfigurationall] TO [aipublic]
GO