There is no such account

05/21/2015 21:39 rustem147#1
When I read only access to the database of the game There is no such account Have gives SQL code error, please know the solution?
05/22/2015 07:54 SkuulCandy#2
No table account found ? Or error when you editing account table ?
05/22/2015 10:12 rustem147#3
error in the use of this name
05/22/2015 16:32 SkuulCandy#4
Id of account error ? Or name already in use (for characters)
05/22/2015 18:50 rustem147#5
Ben her şeyi deniyorum, ama hata bu ismi kullanmaz
05/22/2015 22:23 SkuulCandy#6
Use Fix already in use ..
05/28/2015 02:02 momocruz#7
did you use instant level script ?

if yes how many money you give with to a toon ?

put 200 000 000 money or 1b maximum .
05/31/2015 08:06 GM.Triest#8
Try running this:

Code:
USE [PS_GameData]
GO

/****** Object: Index [IX_Chars_CharName] Script Date: 10/07/2011 17:15:26 ******/
IF EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[Chars]') AND name = N'IX_Chars_CharName')
DROP INDEX [IX_Chars_CharName] ON [dbo].[Chars] WITH ( ONLINE = OFF )
GO

USE [PS_GameData]
GO

/****** Object: Index [IX_Chars_CharName] Script Date: 10/07/2011 17:15:27 ******/
CREATE NONCLUSTERED INDEX [IX_Chars_CharName] ON [dbo].[Chars]
(
[CharName] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO