Tag Archive | "Password"

How To Recover Access Password To Open A Password-Protected Database?


How To Recover Access Password To Open A Password-Protected Database?

How to recover Access password to open a password-protected database?

By using the OpenCurrentDatabase method, you can programmatically open a Microsoft Access database within the Microsoft Access user interface. However, the OpenCurrentDatabase method does not provide a parameter for specifying a password for password-protected databases. Therefore, the user is automatically prompted to enter the Access database password if one exists.

This article describes how to programmatically open a password-protected database in the Microsoft Access user interface without user intervention.

Data Access Objects (DAO) allows you to specify a database password when opening a password-protected database. By using the DBEngine property of the instance of Microsoft Access that your code creates, it is possible to use DAO to specify the password of the database. After the database password has been validated by the Microsoft Jet database engine, you can use the OpenCurrentDatabase method to open the database in the Microsoft Access user interface without user intervention.

Step-by-Step Example

loadTOCNode(2, ‘summary’); CAUTION: If you follow the steps in this example, you modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and follow these steps on a copy of the database.

Start Microsoft Access 2000.
Open the sample database Northwind.mdb for exclusive use. To open the database for exclusive use, click Northwind.mdb in the Open dialog box, click the arrow next to the Open button, and then click Open Exclusive.
On the Tools menu, point to Security, and then click Set Database Password.
Type nwind in the Password and Verify boxes, and then click OK.
Close the sample database Northwind.mdb.
Open the sample database Northwind.mdb to verify that you receive a prompt to enter the database prompt.
Click Cancel to prevent the database from opening.
Create a new, blank database.
Open a new module in Design view.
On the Tools menu, click References.
Add a reference to the Microsoft DAO 3.6 Object Library, and then click OK to close the References dialog box.
Add the following code to the module: Option Compare Database
Option Explicit

Sub OpenPasswordProtectedDB()
‘Define as Static so the instance of Access
‘doesn’t close when the procedure ends.
Static acc As Access.Application
Dim db As DAO.Database
Dim strDbName As String
strDbName = “C:\Program Files\Microsoft Office\Office\Samples\Northwind.mdb”
Set acc = New Access.Application
acc.Visible = True
Set db = acc.DBEngine.OpenDatabase(strDbName, False, False, “;PWD=nwind”)
acc.OpenCurrentDatabase strDbName
db.Close
Set db = Nothing

End Sub
Run the OpenPasswordProtectedDB subroutine in the Immediate window.

Note that the Northwind database opens in the new instance of Microsoft Access without the password prompt.

Afterward, you may want to remove the database password from the sample database Northwind.mdb. To do so, follow these steps:

Start Microsoft Access 2000.
Open the sample database Northwind.mdb for exclusive use. To open the database for exclusive use, click Northwind.mdb in the Open dialog box, click the arrow next to the Open button, and then click Open Exclusive.
When prompted for the database password, type nwind, and then click OK.
On the Tools menu, point to Security, and then click Unset Database Password.
When prompted for the database password, type nwind, and then click OK.
Close the database.

Well, you have removed Access password.


Article from articlesbase.com

More Database Articles

Posted in DevelopmentComments (0)

How to recover Windows server 2003 Administrator password


How to recover Windows server 2003 Administrator password

A Server computer is a computer or series of computers which manage all other terminal computers or electronic devices. It controls all other computer system. Server computer users always protect their account with a strong password because important data and backup of other computer system is present here, and they will lost access of windows server if lost or forget windows server password. When this happened, it is not an easy task to regain access to server computer as windows server has very strong security policy. In this situation you will need server password recovery software help to recover the lost or forgotten windows server password and get access your data which is present at windows server.

There are many situations leads to access loss of Windows server 2003, such as:

Administrator who handling server computer forget server admin password.
Sheet which consist windows server password get corrupted or lost.
People who manage the server computer resigned.
……

To regain access your locked Windows server 2003 computer, you can try these methods:

Use Password Hint– hint option is always available to recall someone’s password. If you provide a password hint at the time of password create then hope it may help you recall your forgotten password.
Use 3rd party server password recovery tool – if you can’t recall or remember your password then don’t worry there are several tools available which can recover windows server 2003 password in few steps.

What server password recovery tool is appropriate? It is always advisable that use full version of server password recovery tool because full version have all functionality of that tool.

SmartKey windows password recovery is a one of the most advanced server password recovery tool that no only recover windows server 2003 password but recover local administrator and domain password for any Windows system if you lost or forgot your password in any case.

It is compatible with latest version windows server 2008, 2003, and 2000.

Follow these steps:

Step 1: Download and install SmartKey Windows password recovery tool.

Step 2: Burn SmartKey Windows password recovery tool to CD/DVD or USB flash drive.

Step 3: Insert newly created CD/DVD in CD-ROM or USB flash drive into USB port and restarts your windows server computer.

Step 4: When system will start an interface of software will open select the windows installation to be processed.

Step 5: Click “Reset” button to reset Windows server administrator password to Re123456.

Step 6: Reboot your server computer and Enter new admin password.

Congratulation! You have recover Windows server administrator password successfully.

Article Source(s):http://www.reset-password.net/how-to-recover-windows-server-2003-administrator-password.html

forgot windows server password? server password recovery software help to recover the lost or forgotten windows server password and get access your data which is present at windows server.


Article from articlesbase.com

More Server Co-location Articles

Posted in ColocationComments (1)

Deal with Forgotten SQL SA Password


Deal with Forgotten SQL SA Password

Here is an essay which will introduce something about SQL Server password such as the policy of what kind of the SQL SA password should be, and also how to reset the SQL password.

I. Policy of SQL Server password

Password Complexity

Password complexity policies are designed to deter brute force attacks by increasing the number of possible passwords. When password complexity policy is enforced, new passwords must meet the following guidelines:

1. The password does not contain all or part of the account name of the user. Part of an account name is defined as three or more consecutive alphanumeric characters delimited on both ends by white space such as space, tab, and return, and any of the following characters: comma (,), period (.), hyphen (-), underscore (_), or number sign (#).

2. The password is at least eight characters long.

3. The password contains characters from three of the following four categories:

* Latin uppercase letters (A through Z)
* Latin lowercase letters (a through z)
* Base 10 digits (0 through 9)
* Non-alphanumeric characters such as: exclamation point (!), dollar sign ($ ), number sign (#), or percent (%).

Passwords can be up to 128 characters long. You should use passwords that are as long and complex as possible.

II. Reset SQL SA Password

1. Way to change the known sa password to a complex one

Step 1: Run command prompt when you have made sure the SQL has been connected.

Step 2: Type in the following command and then press Enter

osql -U sa

Step 3: Type in the command as the following shows to change the password and then press Enter

Sp_password @old = null, @new = ‘complexpwd’, @loginame=’sa’
go

2. Use MS SQL Server Password Unlocker to reset the unknown sa password

As we suggested in the policy of the SQL SA password, the password should be as long and complex as possible then it would be easy to lead a serious problem — forget SQL password. So here we also need to know some convenient tool to reset the forgotten SQL Server password. And following is an efficient tool which you can use — MS SQL Server Password Unlocker.

MS SQL Server Password Unlocker supports MS SQL Server and MS SQL Server Express 2000/2005/2008 SQL password recovery. Also it is known for the clear and interactive of the design. You can use this tool to reset your SQL password instantly within a few steps.

Step 1: Download MS SQL Server Password Unlocker on your local PC, install and launch it.

Step 2: Click the Open button to import the file of master.mdf.

Step 3: Select the SA account and then click Change Password button.

Step 4: Enter your new password and click OK. Your SA password will be reset.

You may have a check on the website to see how bright the interface is.Also MS SQL Server Password Unlocker would support you whenever you get any questions about the program as they got the most patient customer service and professional technical supporting.

 

More info please visit: http://www.passwordunlocker.com/sql-server-password-recovery.html


Article from articlesbase.com

Posted in DevelopmentComments (0)

How to Change SA Password or Other MS SQL Server Passwords?


How to Change SA Password or Other MS SQL Server Passwords?

A few days ago, I had a painful exprience that I lost sa password on my MS SQL Server database, and I almost took the whole weekend to look for some efficient SA password recovery solutions. I asked friends, searched on Internet and even bought some books… Fortunately, I finally got MS SQL Server Password Unlocker and it instantly changed the SA password but no data loss. Besides, I also got a couple of good “recover SA password” solutions in order to save your weekend in case you have lost or forgot MS SQL Server passwords (SA password!)

Option 1 : Use MS SQL Server Password Unlocker to Change SA Password

The most direct, efficient and fastest way to reset SA password is to take use of the third part utility – MS SQL Server Password Unlocker. Just two steps:

Step 1: Access to master.mdf file, which is default at C:Program FilesMicrosoft SQL ServerMSSQLDatamaster.mdf

Step 2: Select SA password and reset SA password

So, Change SA password success!

Option 2 : Change SA Password with Other SQL Server Login

If there is any other SQL Server Login that is a member of sysadmin role, you can log in using that account and reset SA password of SQL Server. Change the SA password account as described here :

SQL SERVER – Change Password of SA Login Using Management Studio.

Login into SQL Server using Windows Authentication.

In Object Explorer, open Security folder, open Logins folder. Right Click on SA account and go to Properties.

Change SA password, and confirm it. Click OK

Make sure to restart the SQL Server and all its services and test new password by log into system using SA login and new password.

Option 3 : Reset SA Password with Windows Login that is a member of Windows Admin Group

If there is any other Windows Login that is a member of Windows Admin Group, log in using that account. Start SQL Server in Single User Mode as described followings :

SQL SERVER – Start SQL Server Instance in Single User Mode.

There are certain situation when user wants to start SQL Server Engine in “single user” mode from the start up.

To start SQL Server in single user mode is very simple procedure as displayed below.

Go to SQL Server Configuration Manager and click on  SQL Server 2005 Services. Click on desired SQL Server instance and right click go to properties. On the Advance table enter param ‘-m;‘ before existing params in Startup Parameters box.

Make sure that you entered semi-comma after -m. Once that is completed, restart SQL Server services to take this in effect. Once this is done, now you will be only able to connect SQL Server using sqlcmd.

Make sure to remove newly added params after required work is completed to restart it in multi user mode.

Create a new login and give it sysadmin permission.

Note : If you have SQL Server Agent enabled, it starts before SQL Server service. If you have enabled SQL Server in a single user mode, it will connect it first, so it is recommended to turn that off before attempting any of the above options.

Reference : Pinal Dave (http://blog.SQLAuthority.com)
Password Unlocker(http://www.passwordunlocker.com)

source: http://blog.passwordunlocker.com

interesting in ms sql server


Article from articlesbase.com

Find More Sql Articles

Posted in DevelopmentComments (1)

SQL 2008 SA Password Reset


SQL 2008 SA Password Reset

SQL 2008 SA Password Reset


Free Online Articles Directory





Why Submit Articles?
Top Authors
Top Articles
FAQ
AB Answers

Publish Article

0 && $.browser.msie ) {
var ie_version = parseInt($.browser.version);
if(ie_version Hello Guest
Login


Login via


Register
Hello
My Home
Sign Out

Email

Password


Remember me?
Lost Password?

Home Page > Computers > Data Recovery > SQL 2008 SA Password Reset

SQL 2008 SA Password Reset

Edit Article |

Posted: Oct 25, 2010 |Comments: 0

|

Share

Ask a question

Ask our experts your Data Recovery related questions here…200 Characters left

Related Questions

Having trouble resetting my password my password

Syndicate this Article

Copy to clipboard

SQL 2008 SA Password Reset

By: lanaya

About the Author

How to reset sa password in SQL Server 2008 when forgot the sa password? The article gives out an easy way for SQL 2008 Password reset.

(ArticlesBase SC #3539517)

Article Source: http://www.articlesbase.com/SQL 2008 SA Password Reset





How to reset sa password in SQL Server 2008 when forgot the sa password?

Many time, This problem comes, they have setup SQL 2008 or SQL 2008 R2 for development or QA environment, but they don’t know the login sa password by which they can connect to server. In SQL Server 2005, SQL used to fixed group sysadmin with the server role BUILTIN\Administrators, that is to say, all local NT administrator automatically add a SQL Server system administrator. But since 2008 Windows BUILTIN\Administrators group is not included by default in the sysadmin server role in SQL Server.

So, follow the steps mentioned to reset SQL 2008 password for SA account if no BUILTIN\Administrators.

Step 1. Download and install MS SQL Server Password Unlocker.
Step 2. Run MS SQL Server Password Unlocker, click Open, import the master.mdf file. All the user names of your SQL Server will be displayed.
Step 3. Select an SQL account, such as ‘SA’, click Change Password button.
Step 4. Type a new password, and then click OK.

The new password has been set for your SA account, now you can login SQL Server with the new password.

Currently SQL Server 2008 still supports two types validation and authentication for access link to resources database, Windows authentication mode and SQL Server and Windows authentication mode which also known as mixed mode. Both of these authentication methods provide access to SQL Server 2008 and its resources.

The Mixed Mode – SQL Server and Windows Authentication Mode

SQL Server and Windows Authentication Mode uses either Active Directory user accounts or SQL Server accounts when validating access to SQL Server. SQL Server 2005 introduces a new way, the policy of the password and account lockout the policy session of SQL Server by using SQL Server implement authentication. SQL Server 2008 also to do so. The policy of SQL Server that can be used include password complexity, password expiration and account lockout. This feature is not available in SQL Server 2000 and becomes a major security risk for most organizations and database administrators. In essence, this weakness has contributed to the Windows authentication set as best practice for the management of authentication in the past. Today, SQL Server and Windows authentication mode may be able to successfully compete with the Windows Authentication Mode.

Retrieved from “http://www.articlesbase.com/data-recovery-articles/sql-2008-sa-password-reset-3539517.html

(ArticlesBase SC #3539517)

lanaya -
About the Author:

How to reset sa password in SQL Server 2008 when forgot the sa password? The article gives out an easy way for SQL 2008 Password reset.

Rate this Article

1
2
3
4
5

vote(s)
1 vote(s)

Feedback
RSS
Print
Email
Re-Publish

Source:  http://www.articlesbase.com/data-recovery-articles/sql-2008-sa-password-reset-3539517.html

Article Tags:
sql 2008 password, sa password, sql password

Related Videos

Related Articles

Latest Data Recovery Articles
More from lanaya


How to Work with SQL SERVER – 2005 Constraint

Learn how to work with SQL SERVER – 2005 Constraint (01:43)


How to use Sparse Columns in SQL Server

Detailed Article for “How to use Sparse Columns in SQL Server ” (05:57)


How to Install Microsoft SQL Server Express

Learn the process of downloading and installing Microsoft SQL Server Express (02:48)


How to Manage Database Properties in MS SQL Server

Learn how to manage the Database Properties in MS SQL Server. Explaining the Columns Properties Dialog (03:29)


How to Purchase the Best Edition of MS SQL Server

Learn how to purchase the best edition of MS SQL Server. (01:47)

4 Methods to Change MS SQL Server Password

Want to change SQL Server password when you forget it? This article introduces 4 methods to reset sa password for MS SQL Server. Hope it can be helpful for you.

By:
lanayal

Computers>
Softwarel
Aug 09, 2010

Lost or forgot Windows 7 password? Recover your password with the All-in-One Password Recovery Solutions Bundle!

Password Unlocker Bundle is a professinaol password recovery kit, which contains series of password recovery tools: Windows password recovery, PDF password recovery,MS Excel password recovery, WinZIP/ZIP password recovery, WinRAR/RAR password recovery, MS SQL password recovery, Internet password recovery, Windows Live/MSN password recovery, MS Access password recovery, Outlook password recovery, and Outlook Express password recovery, etc., No matter you are at home or in office ,the bundle helps

By:
happykakal

Computers>
Securityl
Jan 04, 2010
lViews: 257

How to Recover or Reset Sa Password in SQL Server 2000

This article describes how to assign sa password in sql server 2000 when you select Windows Authentication mode during installation. It also tells you how to recover or reset sa password when you forget sa password and cannot connect to SQL server 2000.

By:
lanayal

Computers>
Softwarel
Oct 18, 2010

Tree Ways to Reset SQL Password!

If the above methods do not provide enough security for you, download MS SQL Server Password Unlocker. MS SQL Server Password Unlocker is a sql password recovery tool for Microsoft SQL Server 2000/2005/2008. With this MS SQL Server Password Unlocker, you can either try to find the original password or reset SQL password to a new one.

By:
Fional

Computers>
Securityl
Jan 14, 2010

How to Create and Remove SQL Server Password

This article introduces a step-by-step guide to create a password for SQL server. It also tells you how to easily remove SQL Server password with SQL password remover if you forget your SQL Server password.

By:
lanayal

Computers>
Softwarel
Sep 07, 2010

Clean Hard Disk Software – Read Now!

You will likely see many varying views on how to handle & clean hard disk errors, so i would warmly advise you to understand how to do that properly. By reading the following article you’ll have the ability to take care of many pc problems- without outside help.

By:
Tom Sheinbergl

Computers>
Data Recoveryl
Nov 08, 2010

Hard Disk Not Opening? – You Need To Act Fast !

Struggling and frustrated computer users looking for the best solution to fix hard disk not opening problems – free a minute or two to read these brief guidelines. If you’ll take a look at what follows, you’ll be able to rid your pc of these and similar annoying windows glitches – and there’s no need to call in an expensive repair service.

By:
Tom Sheinbergl

Computers>
Data Recoveryl
Nov 08, 2010

Clean Harddrive – Try The Following !

Are you frantically searching for a way to handle & clean harddrive problems? You’ve come to the right place; in almost no time at all your error hassles will be over. In the next few paragraphs i’d like to tell you how you can – all by yourself – stop many computer errors from occurring.

By:
Tom Sheinbergl

Computers>
Data Recoveryl
Nov 08, 2010

Hard Disk Cannot Boot? – Rid Of Pc Errors !

Frustrated by error messages? actually, there’s a simple method that you can use to handle hard disk that cannot boot problems even if you have minimal technical skills. You’re moments away from learning that ridding your pc of tiresome computer glitches doesn’t mean you have to call in the pros.

By:
Tom Sheinbergl

Computers>
Data Recoveryl
Nov 08, 2010

Speed Up Hard Drive Access – It Is Repairable !

You’ve likely become aware of the fact that windows is not error-free, so if you’re looking for a way to repair hard drive access speed problems, keep reading for an easy solution. Devote a few minutes to reading what follows, and i’m going to explain a simple and reliable technique to take care of these troubles.

By:
Tom Sheinbergl

Computers>
Data Recoveryl
Nov 08, 2010

Free Hard Drive Test – Here Is A Tip !

No doubt you’ve observed that the windows system may not always behave as you want it to; if you want to quickly fix hard drive errors, just read on for the answer. So before you dial the number of a repair service, a better idea is to simply read this brief article – this is something you can tackle by yourself.

By:
Tom Sheinbergl

Computers>
Data Recoveryl
Nov 08, 2010

Fixing Hard Disk Errors – Latest Repair Tip !

You can encounter computer problems for a variety of reasons, but, there’s a tool that gives you the power to fix hard disk errors all by yourself. Should you find yourself looking for solutions, you will quickly learn a simple and reliable technique to rid your computer of these errors.

By:
Tom Sheinbergl

Computers>
Data Recoveryl
Nov 08, 2010

Windows Has Detected A Hard Disk Problem In Windows 7? – Try !

You’ve likely become aware of the fact that the windows system may not always behave as you want it to; if you want to quickly fix hard disk problems in Windows 7, you’ll soon learn a quick and easy method. Are you curious as to how to fix these errors with almost no effort on your part? The solution is coming right up!

By:
Tom Sheinbergl

Computers>
Data Recoveryl
Nov 08, 2010

How to enable Windows 7 administrator account and reset lost Win 7 admin password

2 methods for you to enable windows 7 administrator account when you install Win 7, and 1 instant and efficient way to reset your lost win 7 admin password.

By:
lanayal

Computers>
Data Recoveryl
Nov 02, 2010

Reset Windows 7 Password With Own Created Reset Disk

Forgot your Windows 7 administrator password? You can reset Windows 7 password with a Windows 7 password reset disk created with Windows password Breaker by yourself.

By:
lanayal

Computers>
Data Recoveryl
Oct 29, 2010

SQL 2008 SA Password Reset

How to reset sa password in SQL Server 2008 when forgot the sa password? The article gives out an easy way for SQL 2008 Password reset.

By:
lanayal

Computers>
Data Recoveryl
Oct 25, 2010

How to Recover or Reset Sa Password in SQL Server 2000

This article describes how to assign sa password in sql server 2000 when you select Windows Authentication mode during installation. It also tells you how to recover or reset sa password when you forget sa password and cannot connect to SQL server 2000.

By:
lanayal

Computers>
Softwarel
Oct 18, 2010

Reset sql sa password directly and efficiently

Lost or forgot sql sa password? Looking for sql sa password reset ways? This article describes 3 efficient methods on how to reset sql sa password.

By:
lanayal

Computers>
Information Technologyl
Oct 05, 2010

10 Options to Reset Windows Admin, User and Domain Password

Locked out of computer as you forgot Windows password? Just follow 10 options listed in the article to reset Windows password and regain access to your computer. Never to be troubled by lost Windows password.

By:
lanayal

Computers>
Securityl
Sep 26, 2010

Top 6 Reasons to Use Password Unlocker Bundle to Recover Lost Password

Forgot Windows password, Office file passwords like Word document password, PDF password, ZIP and RAR password, IE websites password and IM password? Don’t be worried. You can recover these lost passwords with a single Password Unlocker Bundle. This article lists top 6 reasons to use Password Unlocker Bundle to recover lost password.

By:
lanayal

Computers>
Softwarel
Sep 13, 2010

How to Create and Remove SQL Server Password

This article introduces a step-by-step guide to create a password for SQL server. It also tells you how to easily remove SQL Server password with SQL password remover if you forget your SQL Server password.

By:
lanayal

Computers>
Softwarel
Sep 07, 2010

Add new Comment

Your Name: *

Your Email:

Comment Body: *

 

Verification code:*

* Required fields

Submit

Your Articles Here
It’s Free and easy

Sign Up Today

Author Navigation

My Home
Publish Article
View/Edit Articles
View/Edit Q&A
Edit your Account
Manage Authors
Statistics Page
Personal RSS Builder

My Home
Edit your Account
Update Profile
View/Edit Q&A
Publish Article
Author Box


lanaya has 32 articles online

Contact Author

Subscribe to RSS

Print article

Send to friend

Re-Publish article

Articles Categories
All Categories

Advertising
Arts & Entertainment
Automotive
Beauty
Business
Careers
Computers
Education
Finance
Food and Beverage
Health
Hobbies
Home and Family
Home Improvement
Internet
Judaism
Law
Marketing
News and Society
Relationships
Self Improvement
Shopping
Spirituality
Sports and Fitness
Technology
Travel
Writing

Computers

Computer Forensics
Computer Games
Data Recovery
Databases
E-Learning
File Types
Hardware
Information Technology
Intra-net
Laptops
Networks
Operating Systems
Programming
Security
Software

Need Help?
Contact Us
FAQ
Submit Articles
Editorial Guidelines
Blog

Site Links
Recent Articles
Top Authors
Top Articles
Find Articles
Site Map

Webmasters
RSS Builder
RSS
Link to Us

Business Info
Advertising

Use of this web site constitutes acceptance of the Terms Of Use and Privacy Policy | User published content is licensed under a Creative Commons License.
Copyright © 2005-2010 Free Articles by ArticlesBase.com, All rights reserved.

Related Sql Articles

Posted in DevelopmentComments (3)

How to Recover/Reset SA Password or Other MS SQL Passwords?


How to Recover/Reset SA Password or Other MS SQL Passwords?

A few days ago, I had a painful experience that I lost SA password on my MS SQL Server database, and I almost took the whole weekend to look for an efficient way to reset SA password. I asked friends, searched on Internet and even bought some books…. Fortunately, I finally gota SQL Password Recovery software and it instantly reseted SA password without data loss. And I also got a couple of good “reset SA password” solutions to save your weekend in case you have lost or forgot MS SQL Server passwords (SA password!)

Option 1 : Use MS SQL Server Password Unlocker to Recover/Reset SA Password

The most direct, efficient way to reset SA password is to take use of the third part utility – SQL password recovery software. Just two steps:
Step 1: Access to master.mdf file, which is default at C:\Program Files\Microsoft SQL Server\MSSQL\Data\master.mdf

Step 2: Select SA password and reset SA password

So, Reset SA password successfully!

Option 2 : Recover/Reset SA Password with Other SQL Server Login

If there is any other SQL Server Login that is a member of sysadmin role, you can log in using that account and reset SA password of SQL Server. Reset SA password account as described here :
SQL SERVER – Reset Password of SA Login Using Management Studio.
Login into SQL Server using Windows Authentication.
In Object Explorer, open Security folder, open Logins folder. Right Click on SA account and go to Properties.

Reset SA password, and confirm it. Click OK

Make sure to restart the SQL Server and all its services and test new password by log into system using SA login and new password.

Option 3 : Recover/Reset SA Password with Windows Login that is a member of Windows Admin Group

If there is any other Windows Login that is a member of Windows Admin Group, log in using that account. Start SQL Server in Single User Mode as described followings :
SQL SERVER – Start SQL Server Instance in Single User Mode.
There are certain situation when user wants to start SQL Server Engine in “single user” mode from the start up.
To start SQL Server in single user mode is very simple procedure as displayed below.
Go to SQL Server Configuration Manager and click on SQL Server 2005 Services. Click on desired SQL Server instance and right click go to properties. On the Advance table enter param ‘-m;‘ before existing params in Startup Parameters box.
Make sure that you entered semi-comma after -m. Once that is completed, restart SQL Server services to take this in effect. Once this is done, now you will be only able to connect SQL Server using sqlcmd.

More Sql Articles

Posted in DevelopmentComments (1)

How to Recover or Reset Sa Password in SQL Server 2000


How to Recover or Reset Sa Password in SQL Server 2000

Microsoft SQL Server 2000 is a full-featured relational database management system that offers a variety of administrative tools to ease the burdens of database development, maintenance and administration. It operates in one of two authentication modes: Windows Authentication Mode (the default) or Mixed Mode.

When you install the SQL Server 2000, you can log in the server with Windows Authentication and SQL Server Authentication if you select mixed mode authentication. If you select Windows Authentication, you cannot assign a sa password during installation. However, you should set the sa password after installation.

It is very easy for one to set sa password in SQL 2000. Just follow the below steps:

* 1. Expand a server group, and then expand a server.
* 2. Expand Security, and then click Logins.
* 3. In the details pane, right-click SA, and then click Properties.
* 4. In the Password box, type the new password.

The type of client connections determines the choice of security mode. If all of the incoming clients support trusted connections, you can use Windows Authentication Mode. If some clients do not support trusted connections, you can select Mixed Mode.

If you forget the sa password, you will need to use MS SQL Server Password Unlocker to reset sa password SQL 2000. MS SQL Server Password Unlocker is easy yet powerful SQL Server password reset software for you to reset SQL password, including reset SA password and other user passwords. It provides you an easy and safe way to reset SQL Server password for Microsoft SQL Server 2000/2005/2008 in a minute. No need for you to reinstall MS SQL Server on your PC. The file in master.mdf format is enough for you to recover sa password SQL 2000.

Steps to reset sql password 2000 for sa as follows:

* 1. Download and install MS SQL Server Password Unlocker.
* 2. Click the application icon to run it.
* 3. Click Open to import your master.mdf file. All the user names of your MS SQL Server will be displayed.
* 4. Select sa account, click Change password button to reset sa password.
* 5. Type a new password, and then click OK to finish your operation.

Note: This method to reset sa password in sql server 2000 is usually applied when you cannot login SQL Server 2000 by Windows Authentication wile you forget system administrator login password.

More information about sa password:

According to Microsoft, System administrator (sa) is a special login provided for backward compatibility. By default, it is assigned to the sysadmin fixed server role and cannot be changed. Although sa is a built-in administrator login, do not use it routinely. Instead, make system administrators members of the sysadmin fixed server role, and have them log on using their own logins. Use sa only when there is no other way to log in to an instance of Microsoft SQL Server.

Find More Sql Articles

Posted in DevelopmentComments (1)

Reset sql sa password directly and efficiently


Reset sql sa password directly and efficiently

A few days ago, I had a painful experience that I lost SA password on my MS SQL Server database, and I almost took the whole weekend to look for an efficient way to reset SA password. I asked friends, searched on Internet and even bought some book…. Fortunately, I finally got a SQL server password recovery software and it instantly reset SA password without data loss. And I also got a couple of good solutions for sql sa password reset to save your weekend in case you have lost or forgot MS SQL Server passwords (SA password!).

Option 1 : Use MS SQL Server Password Unlocker to Recover/Reset SA Password

The most direct, efficient way to reset SA password is to take use of the third part utility – SQL server password recovery software. Just two steps:

Step 1: Access to master.mdf file, which is default at C:\Program Files\Microsoft SQL Server\MSSQL\Data\master.mdf

Step 2: Select SA password and reset SA password

So, Reset SA password successfully!

Option 2 : Recover or Reset SA Password with Other SQL Server Login

If there is any other SQL Server Login that is a member of sysadmin role, you can log in using that account and reset SA password of SQL Server. Reset sql sa password as described here :

SQL SERVER – Reset Password of SA Login Using Management Studio.
Login into SQL Server using Windows Authentication.
In Object Explorer, open Security folder, open Logins folder. Right Click on SA account and go to Properties.
Reset SA password, and confirm it. Click OK.

Make sure to restart the SQL Server and all its services and test new password by log into system using SA login and new password.

Option 3 : Recover or Reset SA Password with Windows Login that is a member of Windows Admin Group

If there is any other Windows Login that is a member of Windows Admin Group, log in using that account. Start SQL Server in Single User Mode as described followings :

SQL SERVER – Start SQL Server Instance in Single User Mode.
There are certain situation when user wants to start SQL Server Engine in “single user” mode from the start up.
To start SQL Server in single user mode is very simple procedure as displayed below.
Go to SQL Server Configuration Manager and click on SQL Server 2005 Services. Click on desired SQL Server instance and right click go to properties. On the Advance table enter param ‘-m;’ before existing params in Startup Parameters box.

Make sure that you entered semi-comma after -m. Once that is completed, restart SQL Server services to take this in effect. Once this is done, now you will be only able to connect SQL Server using sqlcmd.

Posted in DevelopmentComments (0)

How to Create and Remove SQL Server Password


How to Create and Remove SQL Server Password

SQL Server is a Microsoft product used to manage and store information. It uses tables to contain large sets of records for the database. Do you have a SQL server and have you ever used SQL server? Do you know how to create a SQL Server password to protect your data stored on SQL server? What to do if you forget your SQL password? Following it will introduce you how to create a SQL password. And it also tells you how to remove SQL Server password if you forget as password can be easily lost.

How to create a SQL Server password?

As we know, it is an important security measure to set a password for user accounts and in particular the SA account. And it is very easy for you to create a SQL Server password. Just follow the simple instructions.

1. Open the Microsoft SQL Server Management Studio program from the Start menu bar in Windows.
2. Click on the SQL Server instance on which the new user will be created.
3. Right-click the Security folder, point to New, and then click Login.
4. On the General page, enter a name for the new login in the Login name box.
5. Select SQL Server Authentication and enter a password for the login.
6. Select the password policy options that should be applied to the new login. In general, enforcing password policy is the more secure option.
7. Click the OK to complete the creation of the new user.

Sometimes it happens that you ignore or forget the system administrator password. What will you do if you forget SQL password and cannot access to SQL database? The effective way I know is to remove SQL Server password with the help of SQL Server password remover software. MS SQL Server Password Unlocker is one of the good MS SQL password remover tools which can help you remove SQL password in a few seconds.

How to remove SQL password with Windows Password Unlocker?

MS SQL Server Password Unlocker is handy SQL Server password remover software for you to reset SQL password including reset SA password and other user passwords. It can easily remove SQL Server password for Microsoft SQL Server 2000/2005/2008 in a minute. You don’t need to install MS SQL Server on your PC, and the file in master.mdf format is enough for you to remove SQL Server password and set a new one for it.

Step 1. Download and install MS SQL Server Password Unlocker, and run the application.
Step 2. Click Open to import your master.mdf file. All the user names of your MS SQL Server will be displayed.
Step 3. Select an SQL account, click Change password button.
Step 4. Type a new password, and then click OK.

This SQL account password has been reset. You can login with the newly set SQL password. Although it is easy for you to remove SQL Server password with SQL password remover, it is better to keep your SQL password in heart. Or you can also write it down on a paper and keep in a safe place.

Posted in DevelopmentComments (1)

4 Methods to Change MS SQL Server Password


4 Methods to Change MS SQL Server Password

Have you ever forgot or lost your MS SQL Server password? Did you reinstall MS SQL Server or change SQL Server Password by some ways at that time? I once forgot my MS SQL Server password and I reinstalled My MS SQL at last as I failed to find some good methods to solve the problem. What annoying and terrible experience it is! In order to avoid reinstalling SQL Server for a second time due to the same reason, so I collect some methods to change SQL Server password for sa account.

Method 1: Use Command Prompt to Change SQL Server Password

Step 1. Open a command prompt (Start -> Run -> cmd)
Step 2. Type the follow commands, and press Enter after each line:
Osql –S yourservername –E
1> EXEC sp_password NULL, ‘yourpassword’, ‘sa’
2> GO
The yourservername is the name of your server, yourpassword is the new sql sa password.
The command line 1> also can be changed to other command, the model is EXEC sp_password ‘oldpassword’, ‘newpassword’, ‘sqlaccount’.

Method 2: Use the Query Windows in Management Studio to Change MS SQL Server Password

Step 1. Open SQL Server Management Studio
Step 2. Open a new query
Step 3. Type the follow commands and excute:
GO
ALTER LOGIN [sa] WITH DEFAULT_DATABASE=[master]
GO
USE [master]
GO
ALTER LOGIN [sa] WITH PASSWORD=N’NewPassword’ MUST_CHANGE
GO
The NewPassword is set for your SQL Server sa account.

Method 3: Change SQLServer Password by Windows Authentication

If Builtin/Administrator is present in SQL Server, you can login with an ID which is member of Administrators group and change sa password in SQL Server. Just do as follows:
1. Login into SQL server using Windows Authentication.
2. In Object Explorer, open Security folder, open Logins folder. Right Click on sa account and go to Properties.
3. Type a new SQL sa password, and confirm it. Click OK to finish.
After restarting SQL Server and all its servers, you can log into SQL Server by sa login with new SQL sa password.

Method 4: Change MS SQL Server Password with Third Party Software

In addition to the methods above, you can aslo choose some SQL Server password recovery tool to change SQL Server password. MS SQL Server Password Unlocker is one of the good MS SQL passwrod reset tools which can help you change SQL Server password in a few seconds. It allows you to chage MS SQL password on SQL Server and Express 2000/2005/2008.

Following is a guide for you to change MS SQL password with MS SQL Server Password Unlocker.
Step 1.Download and install MS SQL Server Password Unlocker.
Step 2. Run MS SQL Server Password Unlocker, click Open, import your master.mdf file. All the user names of your MS SQL Server will be displayed.
Step 3. 3. Select an SQL account, click Change password button.
Step 4. Type a new password, and then click OK.
This SQL account password has been reset. You can login with it.

Well, the four solutions are the easy-to-use MS SQL Server Password Reset ways.

Related Sql Articles

Posted in DevelopmentComments (1)