Persistent ASP Session store can reside in either "tempdb" or "aspstate" database in SQL Server 2005. The sqlConnectionString parameter, in sessionState doesn't specify this (example below). How is this resolved?

<sessionState mode="SQLServer" sqlConnectionString="Server=mysqlserver;Integrated Security=SSPI;" cookieless="false" timeout="20" />
link|improve this question
feedback

1 Answer

I think within sqlConnectionString you need another key/value pair:

Initial Catalog=myDataBase;

Check out this page here

If that doesn't work then it might be:

Database=myDataBase;

But I think you need the first example.

link|improve this answer
Catalog is not required when specifying the database for session state. – Vivek Singh May 28 '11 at 11:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.