EP 3x
I made any fuckup with Auto Strategy point tables and do not make backup old ....
Could you help me ?
I need tables for Create and range Auto Strategy point every hour
Printable View
EP 3x
I made any fuckup with Auto Strategy point tables and do not make backup old ....
Could you help me ?
I need tables for Create and range Auto Strategy point every hour
If you need info just use admin tool, set and restart the server.
If you need tables then its here:
Code:USE [atum2_db_account]
GO
/****** Object: Table [dbo].[td_StrategyPointNotSummonTime] Script Date: 02/25/2012 17:41:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[td_StrategyPointNotSummonTime](
[DayOfWeek] [smallint] NOT NULL,
[StartTime] [smalldatetime] NULL,
[EndTime] [smalldatetime] NULL,
[CheckSummon] [tinyint] NULL,
PRIMARY KEY CLUSTERED
(
[DayOfWeek] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Code:USE [atum2_db_account]
GO
/****** Object: Table [dbo].[td_StrategyPointSummonRange] Script Date: 02/25/2012 17:42:53 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[td_StrategyPointSummonRange](
[SummonRange] [smallint] NULL,
[StrategyPointSummonCheck] [tinyint] NULL,
[MaxSummonCountDaily] [tinyint] NULL
) ON [PRIMARY]
GO
Code:USE [atum2_db_1]
GO
/****** Object: Table [dbo].[td_StrategyPointSummonInfo] Script Date: 02/25/2012 17:43:23 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[td_StrategyPointSummonInfo](
[MapIndex] [int] NOT NULL,
[SummonCount] [tinyint] NULL,
[SummonTime] [datetime] NULL,
[SummonAttribute] [tinyint] NULL,
PRIMARY KEY CLUSTERED
(
[MapIndex] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Code:USE [atum2_db_1]
GO
/****** Object: Table [dbo].[td_StrategyPointSummonRangeTimeInfo] Script Date: 02/25/2012 17:43:35 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[td_StrategyPointSummonRangeTimeInfo](
[StartTime] [datetime] NULL,
[EndTime] [datetime] NULL,
[SummonRange] [smallint] NULL,
[StrategyPointSummonCheck] [tinyint] NULL,
[MaxSummonCountDaily] [tinyint] NULL
) ON [PRIMARY]
GO
Tables only ;)
thnx