• 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.

REQ. Arcturus server - SHO_MALL SQL or TXT notepad

Status
Not open for further replies.
Newbie Spellweaver
Joined
Mar 29, 2008
Messages
16
Reaction score
0
REQ. Arcturus Server - Database including SHO_MALL SQL or TXT notepad
 
Junior Spellweaver
Joined
Nov 23, 2008
Messages
146
Reaction score
11
Just create it and you're good to go.

You don't need that to run the server. If you want to add it though, there is one somewhere on this forum or maybe osrose has it
 
Junior Spellweaver
Joined
Jun 19, 2010
Messages
148
Reaction score
6
copy paste


[NOT MANDATORY] You can also create the SHO_MALL database, with this sql:
USE [master]
GO
/****** Object: Database [SHO_MALL] Script Date: 07/28/2007 18:13:08 ******/
CREATE DATABASE [SHO_MALL] ON PRIMARY
( NAME = N'SHO_MALL', FILENAME = N'Noob:\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\SHO_MALL.mdf' , SIZE = 2048KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
LOG ON
( NAME = N'SHO_MALL_log', FILENAME = N'Noob:\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\SHO_MALL_log.ldf' , SIZE = 1024KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)
GO
EXEC dbo.sp_dbcmptlevel @dbname=N'SHO_MALL', New_cmptlevel=90
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [SHO_MALL].[dbo].[sp_fulltext_database] Action = 'enable'
end
GO
ALTER DATABASE [SHO_MALL] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [SHO_MALL] SET ANSI_NULLS OFF
GO
ALTER DATABASE [SHO_MALL] SET ANSI_PADDING OFF
GO
ALTER DATABASE [SHO_MALL] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [SHO_MALL] SET ARITHABORT OFF
GO
ALTER DATABASE [SHO_MALL] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [SHO_MALL] SET AUTO_CREATE_STATISTICS ON
GO
ALTER DATABASE [SHO_MALL] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [SHO_MALL] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [SHO_MALL] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [SHO_MALL] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [SHO_MALL] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [SHO_MALL] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [SHO_MALL] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [SHO_MALL] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [SHO_MALL] SET ENABLE_BROKER
GO
ALTER DATABASE [SHO_MALL] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [SHO_MALL] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [SHO_MALL] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [SHO_MALL] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [SHO_MALL] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [SHO_MALL] SET READ_WRITE
GO
ALTER DATABASE [SHO_MALL] SET RECOVERY SIMPLE
GO
ALTER DATABASE [SHO_MALL] SET MULTI_USER
GO
ALTER DATABASE [SHO_MALL] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [SHO_MALL] SET DB_CHAINING OFF
 
Status
Not open for further replies.