I have asp.net app and I\'m going to store my session in SQL Server. I\'m using Amazon RDS (Microsoft SQL Server Express Edition). I am using local db for testing and its wo
I've solved my issue create session DB on Amazon RDS.
You can use sql server session state on SQL RDS.
You just need to comment out the parts of the InstallSqlState.sql that have to do with creating SQL Server Agent jobs. The script is used when running the aspnet_regsql.exe command. It's located in the framework folder right next to that exe. It doesn't gracefully handle failing to create the jobs, so it doesn't do any of the other steps to install session state.
Here's what my InstallSqlState.sql ultimately looked like: http://pastebin.com/QJDXC093
Or alternately, you can run the aspnet_regsql.exe command on a database where you do have permissions to create jobs and then use the import/export feature in management studio to move the resulting database schema from your database to RDS.