ASP.NET 2.0 Session State

C

Cowboy \(Gregory A. Beamer\)

The session state should be the same, but I would not feel comfortable using
the same exact SLQ Server database for session state for both, making me
inclined to say no.

You could aim to different instances or different databases (not sure how to
do the later).

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside of the box!
*************************************************
 
J

Juan T. Llibre

re:
You could aim to different instances

Not needed.

re:
or different databases (not sure how to do the later).

It's easily done by using the -d parameter when you run aspnet_regsql.exe
for ASP.NET 2.0, or modify installsqlstate.sql for the 1.1 version.

You need to modify the other two install*.sql files if you change the default name for 1.1:
installpersistsqlstate.sql and installsqlstatetemplate.sql ( as opposed to changing the
database name for 2.0 )

For ASP.NET 2.0, run ''aspnet_regsql.exe -?'' for details.

You will need to change one or the other, since the default name for both is "ASPState"

The databases are quite different, and pointing each ASP.NET
version to a differently-named database will work fine.




Juan T. Llibre, asp.net MVP
aspnetfaq.com : http://www.aspnetfaq.com/
asp.net faq : http://asp.net.do/faq/
foros de asp.net, en español : http://asp.net.do/foros/
===================================
 
C

Cowboy \(Gregory A. Beamer\)

Juan:

Thanks for the info on how to set up different versions. I figured the
session state database was incompatible, but did not want to take a chance
with the wrong info. Kudos!

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside of the box!
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top