I am using SQL Server for persisting session state in a asp.net web application.
Is there a best practice for the location of the session data? Should it be in the database along with the application data or in a separate 'Application Services Database' as Microsoft suggests by default.
The application services database would also house other provider data (ie. roles, membership, etc.)
Thanks.