`
雨过天晴0521
  • 浏览: 154729 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Modify password of an accnout in SQL Server

 
阅读更多
http://msdn.microsoft.com/en-us/library/ms189751.aspx

Create login sample:
CREATE LOGIN qa WITH PASSWORD = 'password01';
GO


Modify password of an accnout:
ALTER LOGIN qa WITH
PASSWORD = 'password01'
OLD_PASSWORD = 'password01';
GO


Then you should go to security folder on DB tree, right-click
this account, cancel 'enforce password policy', then you can
login. More details,refer to:

http://msdn.microsoft.com/en-us/library/aa337562.aspx
分享到:
评论

相关推荐

    Beginning T-SQL with Microsoft SQL Server 2005 and 2008

    Beyond the basics of database object management and security concepts, we recommend Beginning SQL Server 2005 Administration and Beginning SQL Server 2008 Administration from Wrox, co-authored in ...

    SQL Server 2014 Development Essentials - Masood-Al-Farooq, Basit A. [SRG].pdf

    Then, it introduces the architecture of the SQL Server 2014 in-memory technology. Next, it covers all SQL Server 2014 index types and how they can be used to achieve optimal query performance while ...

    Inside Microsoft SQL Server 2008 T-SQL Querying

    SQL—and unveil the power of set-based querying—with comprehensive reference and advice from a highly regarded T-SQL expert and members of Microsoft's SQL Server development team. Database developers...

    Microsoft SQL Server 2012 T-SQL Fundamentals

    This book walks you through your first steps in T-SQL (also known as Transact-SQL), which is the Microsoft SQL Server dialect of the ISO and ANSI standards for SQL. You’ll learn the theory behind T-...

    Microsoft SQL Server 2005 Analysis Services Step by Step

    Provides information on the fundamentals of Microsoft SQL Server 2005 Analysis Services. Teach yourself the fundamentals of SQL Server Analysis Services—one step at a time. With this practical, ...

    SQL Server之JSON 函数详解

    本篇文件将结合MSND简要分析Sqlserver中JSON函数,主要包括ISJSON,JSON_VALUE,JSON_MODIFY,JSON_QUERY,需要的朋友可以参考下

    SQL Server中的XML数据进行insert、update、delete

    SQL Server中新增加了XML.Modify()方法,分别为xml.modify(insert),xml.modify(delete),xml.modify(replace)对应XML的插入,删除和修改操作。 本文以下面XML为例,对三种DML进行说明: declare @XMLVar xml = ‘ ...

    Microsoft SQL Server2005 Analysis Step by Step

    Provides information on the fundamentals of Microsoft SQL Server 2005 Analysis Services. Teach yourself the fundamentals of SQL Server Analysis Services—one step at a time. With this practical, ...

    SQLserver2008系统数据库的迁移.doc

    SQLSERVER2008的系统数据库迁移 意义: 就是从C盘移动其他分区 从这个硬盘移动其他硬盘,数据库还能启动 为一般数据库的迁移做准备 系统数据库迁移主要迁移以下数据库 第一类:tempdb,model和msdb 第二类:master,...

    uipath level 1 lesson 3参考答案.docx

    一下为部分题目: 2. The String.Format(“Input = {0} and Output = {1}”, “1”,”2”) expression returns which of ...6. Which activity can be used to modify the value of an existing cell in a DataTable?

    Microsoft SQL Server2005 Analysis Services Step by Step

    Provides information on the fundamentals of Microsoft SQL Server 2005 Analysis Services. Teach yourself the fundamentals of SQL Server Analysis Services—one step at a time. With this practical, ...

    详解SQL Server 中 JSON_MODIFY 的使用

    SQL Server 从 2016 开始支持了一些 JSON操作,最近的项目里也是好多地方字段直接存成了 JSON,需要了解一下怎么在SQL Server 中操作 JSON...这篇文章主要介绍了SQL Server 中 JSON_MODIFY 的使用,需要的朋友可以参考下

    Beginning T-SQL 2012, 2nd Edition.pdf

    language that is most often used to extract or modify data stored in a SQL Server database, regardless of which application or tool you use. SQL Server 2012 T-SQL is based on standards created by the ...

    The Language of SQL(Addison,2ed,2016)

    Many SQL texts attempt to serve as an encyclopedic reference on SQL syntax — an approach that is often counterproductive, because that information is readily available in online references published ...

    SQLServer XML数据的五种基本操作

    0表示不存在,1表示存在,Null表示输入为空 2.xml.value 输入为XQuery表达式,返回一个SQL Server标量值 3.xml.query 输入为XQuery表达式,返回一个SQL Server XML类型流 4.xml.nodes 输入为XQuery表达式,返回一个...

    The.Language.of.SQL.2nd.Edition.0134658256

    Many SQL texts attempt to serve as an encyclopedic reference on SQL syntax -- an approach that is often counterproductive, because that information is readily available in online references published ...

    jsp+sqlserver 2000投票问卷管理系统

    \questionnaire.sql SQL Server数据库生成脚本文件 \shpowquestion.jsp 显示投票 \thanks.jsp 投票结果确认 \showresult.jsp 用户查看投票结果(受管理员限制) \opendata.jsp 打开数据库 \convert.jsp 处理中文字符...

Global site tag (gtag.js) - Google Analytics