If you're using Sitecore 8.2 and up, you have the option of using Azure SQL. It's pretty easy to push all of the Sitecore DBs up to Azure, except for the Sessions DB. You need to run a quick SQL script to edit the database's schema before you can push it to Azure, otherwise you'll get errors.
From
Oleg Burov's GitHub...
USE [Sitecore_session] GO
/****** Object: StoredProcedure [dbo].[CreateTables] ******/
IF OBJECT_ID('CreateTables') IS NOT NULL
DROP PROCEDURE [dbo].[CreateTables] GO
|
No comments:
Post a Comment