[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.6

Access denied when connecting to SQL Server 2005 Standard Edition database from ASP script

Asked by mike99c in SQL Server 2005, Databases Miscellaneous

Hello,
I have a SQL Server 2005 Standard Edition database on a Windows 2003 IIS6 server.
I have taken a copy of another database from another server and restored it within this server. The previous SQL server database was an Express edition.

When I try to run my ASP test connection script, the page hangs rather than display a confirmation statement.

I ran a trace of all the server events using Filemon and the following line kept appearing:
22:36:03 PM       w3wp.exe:6100                OPEN    C:\Program Files\Microsoft SQL Server\90\Shared\instapi.dll   ACCESS DENIED MyComputerName\IUSR_theiusrname

Although I have only copied databases between SQL server Express editions, I have never experienced this issue before. I have never had to apply permissions to any folders to get the connection to work.

The database has a user which has full owner permission. This is how I have always done it in the past. I have attached the ASP connection script so you can see what I am trying to do.

Many thanks
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
Const const_SQLDatabaseName = "testdatabase" 
Const const_SQLuid = "sqlusername"   
Const const_SQLPassword = "sqlpassword" 
 
response.write "<p>Start connection</p>"
Set oConn = Server.CreateObject( "ADODB.Connection" ) ' 
with oConn
	.Provider = "SQLNCLI"
	.ConnectionTimeout = 1000  
	.CommandTimeout = 1000 
	.ConnectionString = "server=.\SQLEXPRESS;database=" & const_SQLDatabaseName & ";uid=" & const_SQLuid & ";password=" & const_SQLPassword
	.Open
end with   
 
response.write "<p>End connection</p>"
 
oConn.Close
set oConn=nothing
 
Related Solutions
Keywords: Access denied when connecting to S…
 
Loading Advertisement...
 
[+][-]09/30/09 03:49 AM, ID: 25457144Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09/30/09 08:34 AM, ID: 25459975Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]10/02/09 10:50 AM, ID: 25480186Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: SQL Server 2005, Databases Miscellaneous
Sign Up Now!
Solution Provided By: mike99c
Participating Experts: 0
Solution Grade: A
 
 
Loading Advertisement...
20091021-EE-VQP-81 - Hierarchy / EE_QW_3_20080625