MS SQL Database

MS Sql server service has'nt an admin area in your domain control panel.
You have to copy your database in web site ftp space,
then you can connect to database using a connection string like this:

Server=.\SQLExpress;AttachDbFilename=|DataDirectory|XXXXX.mdf; Database=xxxxx;Trusted_Connection=Yes;
where you must replace xxxx with your database name.

back