Skip to content

Instantly share code, notes, and snippets.

@rsleggett
Created October 11, 2012 08:06
Show Gist options
  • Save rsleggett/3870898 to your computer and use it in GitHub Desktop.
Save rsleggett/3870898 to your computer and use it in GitHub Desktop.
Broker configuration for database
<Storage Type="persistence" Id="defaultdb" dialect="MSSQL" Class="com.tridion.storage.persistence.JPADAOFactory">
<Pool Type="jdbc" Size="5" MonitorInterval="60" IdleTimeout="120" CheckoutTimeout="120" />
<DataSource Class="com.microsoft.sqlserver.jdbc.SQLServerDataSource">
<Property Name="serverName" Value="YOURSERVER" />
<Property Name="portNumber" Value="1433" />
<Property Name="databaseName" Value="YourDatabase" />
<Property Name="user" Value="YourUser" />
<Property Name="password" Value="*****" />
</DataSource>
</Storage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment