Rank: Member
Joined: 5/9/2006(UTC) Posts: 65
|
I am getting the following error after installing the BV 5.0 Demo locally. I also installed SQL Express, but I am not sure everything is configured properly. Where do I start???
<H1>Server Error in '/sfa' Application. <HR width="100%" color=silver SIZE=1> </H1> <H2>Cannot find table 0. </H2>[color=#ffffcc>
[tr ][td ]<CODE>The]1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
<%@ Page Language="C#" Debug="true" %>
or:
2) Add the following section to the configuration file of your application:
<configuration> <system.web> <compilation debug="true"/> </system.web> </configuration>
Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.[/code] [/td][/tr]</TABLE> [1] <B>Version Information:[/1] Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42
|
|
|
|
Rank: Member
Joined: 10/9/2005(UTC) Posts: 15
|
I had this same type of error and traced it down to the connection string. I was using Windows Authentication and the account that was attempting to connect to the DB did not have access.
I created a SQL server user login/password and then everything worked. Not sure if this is ideal however because my DB password is stored in the web.config file.
The other option is to create a SQL server login for the Windows domain account and give that account permission to the DB. This is tricky as well as the account that attempts to connect to the DB depends on multiple factors like - IIS settings and your web.config file.
Hope this helps,
Jim
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.