Skip to content

Instantly share code, notes, and snippets.

@tomekjuranek
Created November 8, 2012 10:44
Show Gist options
  • Save tomekjuranek/4038088 to your computer and use it in GitHub Desktop.
Save tomekjuranek/4038088 to your computer and use it in GitHub Desktop.
Sitecore connection strings with integrated security
<?xml version="1.0" encoding="utf-8"?>
<connectionStrings>
<add name="core" connectionString="Data Source=host\SQLDBNAME;Database=websiteSitecore_Core;Integrated Security=SSPI"/>
<add name="master" connectionString="Data Source=host\SQLDBNAME;Database=websiteSitecore_Master;Integrated Security=SSPI"/>
<add name="web" connectionString="Data Source=host\SQLDBNAME;Database=websiteSitecore_Web;Integrated Security=SSPI"/>
<add name="analytics" connectionString="Data Source=host\SQLDBNAME;Database=Sitecore_analytics;Integrated Security=SSPI"/>
</connectionStrings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment