【发布时间】:2017-06-08 07:29:24
【问题描述】:
我正在构建一个 ASP.NET、代码优先的 Web 应用程序。我正在使用公司拥有的数据库,并且对该服务器上的一个数据库中的表具有粗略权限。我不相信我有“创建数据库”权限。我在发布我的网络应用程序时遇到了问题。我可以在本地运行所有内容,但是当我在公司服务器上发布代码时,会出现如下错误:
Format of the initialization string does not conform to specification starting at index 0.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.ArgumentException: Format of the initialization string does not conform to specification starting at index 0.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[ArgumentException: Format of the initialization string does not conform to specification starting at index 0.]
System.Data.Common.DbConnectionOptions.GetKeyValuePair(String connectionString, Int32 currentPosition, StringBuilder buffer, Boolean useOdbcRules, String& keyname, String& keyvalue) +1742
System.Data.Common.DbConnectionOptions.ParseInternal(Hashtable parsetable, String connectionString, Boolean buildChain, Hashtable synonyms, Boolean firstKey) +191
System.Data.Common.DbConnectionOptions..ctor(String connectionString, Hashtable synonyms, Boolean useOdbcRules) +136
System.Data.SqlClient.SqlConnectionString..ctor(String connectionString) +75
System.Data.SqlClient.SqlConnectionFactory.CreateConnectionOptions(String connectionString, DbConnectionOptions previous) +35
System.Data.ProviderBase.DbConnectionFactory.GetConnectionPoolGroup(DbConnectionPoolKey key, DbConnectionPoolGroupOptions poolOptions, DbConnectionOptions& userConnectionOptions) +241
System.Data.SqlClient.SqlConnection.ConnectionString_Set(DbConnectionPoolKey key) +78
System.Data.SqlClient.SqlConnection.set_ConnectionString(String value) +116
System.Data.Entity.Infrastructure.Interception.InternalDispatcher`1.Dispatch(TTarget target, Action`2 operation, TInterceptionContext interceptionContext, Action`3 executing, Action`3 executed) +104
System.Data.Entity.Infrastructure.Interception.DbConnectionDispatcher.SetConnectionString(DbConnection connection, DbConnectionPropertyInterceptionContext`1 interceptionContext) +434
System.Data.Entity.Internal.LazyInternalConnection.TryInitializeFromAppConfig(String name, AppConfig config) +39
System.Data.Entity.Internal.LazyInternalConnection.Initialize() +160
System.Data.Entity.Internal.LazyInternalConnection.get_Connection() +16
[Project].DBContext.Context..ctor() in C:\Users\[UserName]\Documents\[FilePath]\[Project]\DBContext\Context.cs:20
[Project].Data_Manager.DataManager..ctor() in C:\Users\[UserName]\Documents\[FilePath]\[Project]\Data_Manager\DataManager.cs:15
[Project].Controllers.HeaderController..ctor() in C:\Users\[UserName]\Documents\[FilePath]\[Project]\Controllers\HeaderController.cs:12
这个错误让我相信我的连接字符串有问题。使用单元测试时,我收到错误:
An exception of type 'System.Data.SqlClient.SqlException' occurred in EntityFramework.dll but was not handled in user code
Additional information: CREATE DATABASE permission denied in database 'master'.
我最近更改了上下文构造函数:
public Context() : base("[server_Name].[database_name]")
{}
到:
public Context() : base("[server_Name].[full_company_server_file_path]")
{}
当我在本地运行解决方案时,也得到了“CREATE DATABASE permission denied in database 'master'”错误。
为了记录,我的连接字符串是:
<connectionStrings>
<clear />
<add name="[server_Name].[database_name]" providerName="System.Data.SqlClient" connectionString="Data Source=[server_Name].[full_company_server_file_path];Initial Catalog=[database_name];Persist Security Info=True;User ID=userid;Password=password;MultipleActiveResultSets=True;Application Name=EntityFramework" />
< /connectionStrings>
我的问题是:
为什么我需要创建数据库权限才能让这一切正常工作? 如果不是这种情况,为什么我会不断收到此错误? (在我的代码中我没有说创建数据库,我也不应该/不能)。
其次,关于修复我的连接字符串有什么建议吗?我从数据库 -> 属性 -> 连接字符串中得到了这个连接字符串(所以我觉得它是正确的)。
感谢所有帮助/提示/解释。
使用:
- ASP.NET/实体框架/C#
- Visual Studio 2015
- SQL Server Management Studio 2014
【问题讨论】:
-
您可以在该服务器上手动创建数据库吗?我的意思是使用提供的凭据直接登录到 SQL 管理工作室上的 sql server。
-
我不确定是否可以,但我不认为可以。这是一家非常大的公司,我不认为会搞砸这样的事情。
-
如果您可以创建任何测试数据库并稍后将其删除并确定您是否有权限会更好。
-
好的 - 我尝试创建一个新数据库并得到“数据库 'master' 中的 CREATE DATABASE 权限被拒绝。(Microsoft SQL Server,错误:262)”。
-
这意味着您有权限问题。正确的?获得数据库管理员权限后可重试
标签: asp.net sql-server database database-permissions