• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

How to fix .exe database restoring error.

Initiate Mage
Joined
Jun 5, 2017
Messages
1
Reaction score
0
If you are having trouble restoring Tales Runner database with the .exe file (collation error, file/filegroup error), then here goes a fix!

You will need to run this script on SQL Server before running the .exe:

Code:
CREATE DATABASE TR_GAMESVR_DB;
GO
ALTER DATABASE TR_GAMESVR_DB MODIFY FILEGROUP SECONDLY1 DEFAULT;
ALTER DATABASE TR_GAMESVR_DB ADD FILEGROUP SECONDLY1;

ALTER DATABASE TR_GAMESVR_DB ADD FILE(FILENAME = '{dbfile}.ndf', NAME = 'TALESDB') TO FILEGROUP SECONDLY1;
GO

ALTER DATABASE TR_GAMESVR_DB COLLATE Korean_Wansung_CI_AS;
GO

Replace {dbfile} with a location + filename where the database will be stored by SQL Server, but mantain extension (.ndf).

After that, execute the .exe backup and run it by upgrading the created database, not creating a new database.
 
Last edited:
Back
Top