表示 进入内容 12
Displaying posts with tag: SQL Server (reset)
Connection To SQL Server

Connection To SQL Server

How to use C# to connect to the SQL Server, there is a connection string we can use:

      string conn = "Integrated Security=false; Data Source=****;Initial Catalog=****;User ID=****;Password=****";

Data Source (Server; Address ; Addr ; Network Address): The name or network address of the instance of SQL Server to which to connect. The port number can be specified after the server name:
server=tcp:servername, portnumber
When specifying a local instance, always use (local).
Initial Catalog (Database): The name of the database.
Integrated Security (Trusted_Connection): By default, it is false, and User ID and Password are specified in the connection. When true, the current Windows account credentials are used for authentication.

To ensure that connections are always closed, open the …

[获取更多]
SQL Server安装权限问题

最近想重拾一下SQL技术,可是发现我工作机里的SQL不好使,我个人账户没有权限创建新的DB,很是郁闷,想了好久可能是我用另外一个admin账户安装的,恰巧密码也想不到了。sa的账户也无法使用,可能在安装时只设置了windows验证,没有设置成混合模式。唉,真是太悲催了。这个案例也许不很常见,可是让我遇到了,现在的处境是卸也卸载不了,使用也没法正常使用。我做了几步尝试,觉得值得把它们记录下来:

如何确定身份验证模式

如果不能确定如何验证 MSDE 安装的身份验证模式,可以查看相应的注册表项。默认情况下,对于 Windows 身份验证,Windows LoginMode 注册表子项的值设置为 1。如果启用了混合模式身份验证,则此值为 2。

•LoginMode 子项的位置取决于您是将 MSDE 作为默认 MSDE …

[获取更多]
表示 进入内容 12