- Joined
- Mar 30, 2007
- Messages
- 745
- Reaction score
- 35
I've optimized some of the Stored Procedures for KalOnline.
And I'll post more here further on.
Notice that ItemDefault.csv is required for Insert_Item procedure, and the table layout for it is as following:
The CSV file contains the data for it.
And I'll post more here further on.
Notice that ItemDefault.csv is required for Insert_Item procedure, and the table layout for it is as following:
Code:
USE [hoax]
GO
/****** Object: Table [dbo].[ItemDefault] Script Date: 04/28/2007 19:57:19 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[ItemDefault](
[ItemDefaultId] [int] IDENTITY(1,1) NOT NULL,
[Job] [tinyint] NULL,
[Index] [int] NULL,
CONSTRAINT [PK_ItemDefault] PRIMARY KEY CLUSTERED
(
[ItemDefaultId] ASC
)WITH (PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
The CSV file contains the data for it.