Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4096204
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:01:01+00:00 2026-05-20T20:01:01+00:00

I need create a SQL Server stored procedure that does the following: Take an

  • 0

I need create a SQL Server stored procedure that does the following:

  1. Take an database user name and password as parameters.
  2. If the user does not exist or the password is invalid, return an empty rowset.
  3. Else, perform a query and return its result.

I don’t know how do perform step 2. Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T20:01:01+00:00Added an answer on May 20, 2026 at 8:01 pm

    There are two routes to go with this:

    1) Query the SQL Server tables directly to find a match. You’ll probably have to go through a view, instead of accessing the table directly. Maybe, select * from Sys.sql_logins

    Need to find a way to hash the password, to compare against the hashed version, in Sys.sql_logins.password_hash

    As of SQL Server 2008, they added the function PWDCOMPARE(). That’s clearly the way MS intended for this to be solved.

    So, in 2008, I would think you’d query it as
    select * from Sys.sql_logins where name = ‘login’ and PWDCOMPARE(‘password’, Sys.sql_logins.password_hash) = 1

    Oddly enough, I just tried this on SQL 2005, and the function seems to exist.

    2) Attempt a connection to the SQL server via a call to OPENDATASOURCE () and test for failure. MSDN page for OPENDATASOURCE() is at: http://msdn.microsoft.com/en-us/library/aa276845(v=sql.80).aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to create a backup of a SQL Server 2005 Database that's only
I need to create several applications that all share a Microsoft SQL Server database.
I need to set up this scenario: A SQL Server 2005 database will create
I have a stored procedure in SQL Server that returns some data via a
I need to create a repeatable process for deploying SQL Server Reporting Services reports.
I need to reverse engineer a Microsoft SQL Server 2008 in order to create
I need to enumerate all the user defined types created in a SQL Server
I've got an MS access database and I would need to create an SQL
I need to create a trigger in every database on my sql 2005 instance.
I need to create an SQL query to insert some data into a table

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.