Microsoft sql server error 5123

SQL server error 5123 occurs when users want to attach the database, which has been placed on different locations. This...

SQL server error 5123 occurs when users want to attach the database, which has been placed on different locations. This error is a kind of permission error that occurs in SQL Server. As we all know, the .mdf is a primary database file and .ldf file represents the log file associated with a primary database file. Regardless of attaching a primary data file via SQL Server Management Studio, sometimes it becomes very difficult to open it. On the other hand, this error may be encountered when there are several logins for attaching or detaching the database. Therefore, in the following section, we are going to discuss a manul procedure to resolve Microsoft SQL Server error 5123 in an absolute and reliable way.

Microsoft SQL Server Error 5123 – Reasons

Let us take a look on the reasons why Microsoft SQL server error 5123 occurs.

  • This error occur if you detach the last database with different logins and then, try to attach a database with different logins.
  • In Microsoft SQL Server this error generates at the time when the entire process is running on the Server but it has no permission to run a program folder.

To overcome this problem we have to change the permission or add permission as the owner of .mdf and .ldf files.

Fix MS SQL Server Error 5123 Attaching Database — Manual Steps

Follow these steps to solve SQL error 5123. Some of the steps are listed below:

  • Right-click on MDF file that you need to attach
  • Then, choose Properties to check the permissions of MDF file.
  • Click on Add button to grant any other login permission or and provide the full login control.

Moreover, you can perform this for an associated .ldf file and again, you can try to attach.

You can also try «Run as Administrator» rather granting permission to everyone.

Attach the Database in Microsoft SQL Server

1. Using SQL Server Management Studio (SSMS)

  • Log in to SSMS using a valid domain name and Windows Authentication
  • Click on the Object Explorer and then, select ‘Databases’ to view the list of existing databases.
  • Right-click on ‘Database’ and choose ‘Attach’ from a drop down menu
  • A new Attach Database Window will appear on the screen, now click on ‘Add’ button
  • After that, you can select the database that you want to attach.
  • The database window will verify the MDF and LDF files. Then, click the OK button.

Here, you can see all the attached database files in SQL instance.

2. Using Transaction SQL (T-SQL)

With the help of sp_attach_db stored procedure, users can easily attach the databases in MS SQL Server. Let us have a look:

sp_attach_db [ @dbname= ] 'dbname'
, [ @filename1= ] 'filename_n' [ ,...16 ]
[ @dbname= ] Is the name of database that can be attached to a server.
[ @filename1= ] 'filename_n' Is the physical name, which includes location of a database file.

How to Solve Microsoft SQL Server Error 5123

If the above-stated method is not working well or you want quick solution to Fix SQL MS SQL Server Error 5123, then you can go for an automated approach ie SQL Database Recovery Tool. The tool recover database from corrupted SQL MDF File. Not only this, it is able to recover deleted database objects of SQL version 2017, 2016, 2015 & its below version.

Conclusion

SQL Server Error 5123 Access Denied error is one of the common error occur which SQL DBAs faces. The blog covers the possible reason behind this error and discusses the resolution to solve SQL Server Error 5123.

Summary: Read this blog to learn about the possible reasons leading to SQL Server 2008 R2 Database error 5123. Also, explore the methods to fix the 5123 error by granting full permissions to the database and then attempting to attach it by using SSMS or T-SQL. For a quick solution to resolve the error and regain access to your database, try using Stellar Repair for MS SQL software. The software can help you recover all the objects from corrupted database (MDF/NDF) files of SQL Server version 2019, 2017, 2016, 2014, 2012, 2008 R2, and lower versions.

Free Download for Windows

Contents

  • Reasons Behind Microsoft SQL Server Error 5123
  • How to Resolve SQL Server 2008 R2 Database Error 5123?

The ‘SQL Server error: 5123, severity 16, state 1’ occurs when attaching database in SQL Server 2008 R2 or higher versions. This may happen when the database you’re trying to attach is placed in a different location.

Stellar
Figure 1 – SQL database error 5123

Reading the complete error message “CREATE FILE encountered operating system error 5(Access is denied.) while attempting to open or create the physical file…clearly indicates that it occurs due to a permission issue.

Now let’s discuss in detail the possible reasons leading to SQL Server error 5123.

Reasons Behind Microsoft SQL Server Error 5123

You may receive the error due to any of these reasons:

  • When you try to attach a database, which is placed on different locations, and do not have sufficient privileges to the folder directory.
  • Alternatively, this error can also occur when different logins are involved in attaching and detaching the database. For instance, the Windows login used to detach the db is different from the Windows login used for reattaching the db.

How to Resolve SQL Server 2008 R2 Database Error 5123?

To resolve this issue, you will need to change or add permissions as the owner of the MDF and LDF files. To do so, follow these steps:

Step 1: Grant Full Permissions on Database Files

  • Right-click on the database file xxxx.mdf reported in the error message, and then select Properties.
  • Check the permissions of the MDF file by clicking the Security tab. The system displays a list of user accounts under Group or user names.
Select Security in SQL Database Properties Window

Figure 2 – Select Security in SQL Database Properties Window

  • On the ‘xxxx.mdf security properties’ window, click Add. Add the user credentials for User2, and check the Full Control checkbox under Allow. Click OK.
Select Full Control Permission

Figure 3 – Select Full Control Permission

  • Try to attach the file to the database using the same credentials used to detach the database.

Step 2 Attach the SQL Database

Try attaching the database in SQL Server using any of the following methods:

Method 1: Using SQL Server Management Studio (SSMS)

  • Using SSMS or the new SQL Operations Studio tool, connect to your valid server’s name with either Windows or SQL Authentication.
Connect to SQL Server Instance

Figure 4 – Connect to SQL Server Instance

  • Go to the Object Explorer and click on ‘Databases’ to see a list of existing databases. Right-click on the ‘Database’ and select ‘Attach’ from the drop-down menu.
  • When an ‘Attach Databases’ window opens, click on the ‘Add’ button. In the dialog box that appears, select the database you want to attach, and then click ‘OK’.
Select Database To Attach in SQL Server

Figure 5 – Select Database To Attach in SQL Server

  • The database window will confirm the MDF and LDF files. Now, click ‘OK.’ The database files should successfully attach to the SQL Server instance as long as the database’s logical name does not exist on the instance.
attach database

Method 2 – Using T-SQL

Attach your SQL database using sp_attach_db stored procedure (deprecated):

sp_attach_db[@dbname=] ‘dbname’,[@filename1=] ‘filename_n’ [ ,…16 ][@dbname=] – Refers to the name of the database to be attached to the   server.[@filename1=] – ‘filename_n’ Is the physical name, including path, of a database file//SAMPLE:EXEC sp_attach_db@dbname = N’MyDatabase’,@filename1 = N’D:DataFilesMyDatabase_Data.mdf’,@filename2 = N’E:LogFilesMyDatabase_Log.ldf’;

Note: Update correct path values in the above command as per your system settings.

After executing the above steps, you won’t experience any issue when trying to attach database failed for SQL Server 2008 R2. You can see the attached databases in SQL instance.

What if the Error Persists?

If the above solution failed to fix the error, that might be an indication that there is a problem within your SQL database. In such a case, you’ll need to repair the SQL database to overcome the error try Stellar Repair for MS SQL. This SQL recovery software is purpose-built to fix all types of corruption errors of SQL Server database. It also helps recover inaccessible objects from MDF and NDF database files. The software repairs a database file while preserving its integrity.

End Note

Though SQL database repair software should succeed in resolving the error, in the rare event if it fails, contact Microsoft customer support for professional assistance.

About The Author

Samuel Okudjeto

Samuel Okudjeto is a technology enthusiast with great interest in database administration and analytics. He has many certifications including the Microsoft Certified Expert Professional. Along with 6+ years of hands-on experience, he holds a Masters of Science degree in Business Analytics. Read more

Best Selling Products

Stellar Repair for MS SQL

Stellar Repair for MS SQL

Stellar Repair for MS SQL is an enterpri

Read More

Stellar Toolkit for MS SQL

Stellar Toolkit for MS SQL

3-in-1 software package, recommended by

Read More

Stellar Converter for Database

Stellar Converter for Database

Stellar Converter for Database is an eff

Read More

Stellar Repair for Access

Stellar Repair for Access

Powerful tool, widely trusted by users &

Read More

  • Remove From My Forums
  • Question

  •  HI ,

     This is a problem I encountered when I had to detach a database file (type .mdf):

     1) I went to the MS SQL Management Server Studi and detached my database file successfully from a connection called Workhorse.

    2) I needed to place the .mdf database file into a zip file in order to put it on a remote server. I did this using Shared Portal.  This was also successful

    3) However when I tried reattaching the database file, I got this error:

    CREATE FILE encountered operating system error 5A(Access denied.) while attempting to open or create the physical file «CProgram FilesMSSQL ServerMSSQLData<databasename>.mdf’

    Q) The database file and log file (ldf) exist in the correct directory so I don’t know what happened. Can any one help?

     Thanks much

    Tonante

Answers

  • I had same issue on Vista machine. I run «SQL Server Express Management Studio» as «Run as administrator» and it worked. Smile

    • Proposed as answer by

      Tuesday, September 1, 2009 8:56 PM

    • Marked as answer by
      Kalman Toth
      Wednesday, May 28, 2014 12:13 AM

  • I had same issue on Vista machine. I run «SQL Server Express Management Studio» as «Run as administrator» and it worked. Smile

    I was running an Enterprise SQL Server on Win 2008 and ‘Run as Administrator’ fixed the error I was getting.

    • Marked as answer by
      Kalman Toth
      Wednesday, May 28, 2014 12:13 AM

  • Rather then giving permissions to EVERYONE, try running the Management Studio
    as Administrator.

    • Proposed as answer by
      Justin Tolchin
      Tuesday, May 7, 2013 6:59 PM
    • Marked as answer by
      Kalman Toth
      Wednesday, May 28, 2014 12:13 AM

Содержание

  1. SQL Server Error 5123 Attach Database — Resolution
  2. Microsoft SQL Server Error 5123 – Reasons
  3. Fix MS SQL Server Error 5123 Attaching Database — Manual Steps
  4. Attach the Database in Microsoft SQL Server
  5. How to Solve Microsoft SQL Server Error 5123
  6. Conclusion
  7. Blogging About SQL Tips & Tricks
  8. Fix Attach Database Error: 5123 in MS SQL Server
  9. Reasons of Microsoft SQL Server Error 5123:
  10. Resolving Microsoft SQL Server Error 5123 Attaching Database
  11. Attaching a Database in SQL Server
  12. Conclusion
  13. Blog of Khlebalin Dmitriy
  14. (Дорогу осилит идущий…)
  15. SQL 2008 ошибка 5123.
  16. How to Fix Microsoft SQL Server Error 5123
  17. Manual workaround to fix MS SQL Server 5123 error
  18. Recommended tools to resolve SQL Server 5123 error
  19. Use SSMS to fix SQL 5123 error
  20. Use T-SQL to resolve MS SQL 5123 error
  21. Use SQL Server recovery tool to solve MS SQL error 5123

SQL Server Error 5123 Attach Database — Resolution

SQL server error 5123 occurs when users want to attach the database, which has been placed on different locations. This error is a kind of permission error that occurs in SQL Server. As we all know, the .mdf is a primary database file and .ldf file represents the log file associated with a primary database file. Regardless of attaching a primary data file via SQL Server Management Studio, sometimes it becomes very difficult to open it. On the other hand, this error may be encountered when there are several logins for attaching or detaching the database. Therefore, in the following section, we are going to discuss a manul procedure to resolve Microsoft SQL Server error 5123 in an absolute and reliable way.

Microsoft SQL Server Error 5123 – Reasons

Let us take a look on the reasons why Microsoft SQL server error 5123 occurs.

  • This error occur if you detach the last database with different logins and then, try to attach a database with different logins.
  • In Microsoft SQL Server this error generates at the time when the entire process is running on the Server but it has no permission to run a program folder.

To overcome this problem we have to change the permission or add permission as the owner of .mdf and .ldf files.

Fix MS SQL Server Error 5123 Attaching Database — Manual Steps

Follow these steps to solve SQL error 5123. Some of the steps are listed below:

  • Right-click on MDF file that you need to attach
  • Then, choose Properties to check the permissions of MDF file.
  • Click on Add button to grant any other login permission or and provide the full login control.

Moreover, you can perform this for an associated .ldf file and again, you can try to attach.

You can also try «Run as Administrator» rather granting permission to everyone.

Attach the Database in Microsoft SQL Server

1. Using SQL Server Management Studio (SSMS)

  • Log in to SSMS using a valid domain name and Windows Authentication
  • Click on the Object Explorer and then, select ‘Databases’ to view the list of existing databases.
  • Right-click on ‘Database’ and choose ‘Attach’ from a drop down menu
  • A new Attach Database Window will appear on the screen, now click on ‘Add’ button
  • After that, you can select the database that you want to attach.
  • The database window will verify the MDF and LDF files. Then, click the OK button.

Here, you can see all the attached database files in SQL instance.

2. Using Transaction SQL (T-SQL)

With the help of sp_attach_db stored procedure, users can easily attach the databases in MS SQL Server. Let us have a look:

How to Solve Microsoft SQL Server Error 5123

If the above-stated method is not working well or you want quick solution to Fix SQL MS SQL Server Error 5123, then you can go for an automated approach ie SQL Database Recovery Tool. The tool recover database from corrupted SQL MDF File. Not only this, it is able to recover deleted database objects of SQL version 2017, 2016, 2015 & its below version.

Conclusion

SQL Server Error 5123 Access Denied error is one of the common error occur which SQL DBAs faces. The blog covers the possible reason behind this error and discusses the resolution to solve SQL Server Error 5123.

Источник

Blogging About SQL Tips & Tricks

Fix Attach Database Error: 5123 in MS SQL Server

Attach Database Error 5123 is a type of a permission error in SQL Server. As we know that, the .mdf files are primary database files and the .ldf files represent log files associated with the primary database files. Despite attaching primary data files via SQL Server Management Studio, sometimes it is difficult to open it.

CREATE FILE encountered operating system error 5(Access is denied.) while attempting to open or create the physical file. (Microsoft SQL Server, Error 5123)

Microsoft SQL Server Error 5123 mostly occurs when you want to attach the database which are placed on different locations. Alternatively, this error can also be experienced when there are different logins for attaching and detaching the database.

Reasons of Microsoft SQL Server Error 5123:

  1. This error can be occur if you have previously detached the database with different logins and trying to attach the database with different logins.
  2. In the SQL Server this error can also occur at the time when the process currently running on the server has no proper permission to run the program folder.

To resolve this issue we need to change the permission or add the permission as the owner of the MDF and LDF files.

Resolving Microsoft SQL Server Error 5123 Attaching Database

  1. Right click on the MDF file, which you want to attach.
  2. Select properties to check the permissions of the MDF file.
  3. Click on the Add button to grant the other login permission or and give the full login control.

You can also do this for the associated LDF file and then try to attach again.

You can try «Run as Administrator» rather giving permission to everyone.

Attaching a Database in SQL Server

There are several methods for attaching the database. Here we will discuss how to attach database using SSMS and T-SQL.

Attaching the Database Using SSMS

  1. Log in to the SSMS using valid server’s name and Windows Authentication.
  2. Go to the Object Explorer and click on ‘Databases‘ to see a list of existing databases.
  3. Right-click on the ‘Database‘ and select ‘Attach‘ from the drop down menu.
  4. A new Attach Databases Window will be open, now click on the ‘Add‘ button.
  5. Select the database, which you want to attach.
  6. The database window will confirm the MDF file and LDF file. Now click on OK button.

Now you can see the attached databases in SQL instance.

Attaching the Database Using T-SQL

Using sp_attach_db stored procedure, we can attach the databases in the SQL Server.

sp_attach_db [ @dbname= ] ‘dbname’
, [ @filename1= ] ‘filename_n’ [ . 16 ]

[ @dbname= ] Is the name of the database to be attached to the server. [ @filename1= ] ‘filename_n’ Is the physical name, including path, of a database file.

Conclusion

In this article, we discussed about the reasons of reasons of Microsoft SQL Server Error 5123 attaching database and know how to troubleshoot the error.

Источник

Blog of Khlebalin Dmitriy

(Дорогу осилит идущий…)

SQL 2008 ошибка 5123.

Модернизация и обновление нашего ЦОД почти закончено, осталось дождаться корзины резервного копирования и перенастроить бэкапы на новую корзину, но это уже не срочно, поэтому пришло время приступить к поэтапному обновлению инфраструктурных и продакшин серверов. На минувшей неделе, было принято решение перенести и консолидировать все на одном, уже 2016 сервере (Windows 2016+SQL 2016), нашу систему мониторинга «SolarWinds».

Необходимо было перекинуть базу с SQL2008 на SQL2016 но входе переноса что-то пошло не так, забэкапленная база никак не хотела разворачиваться на SQL2016… Пришлось «плясать с бубном» пытаясь разными методами решить вопрос, но в определенный момент перестала стартовать и рабочая база на старом сервере SQL2008, восстановили ее из бэкапа, но при попытке Примонтировать восстановленную базу стала выскакивать ошибка 5123,

это было странно, так как вроде никаких изменений не было и все пути и папки были прежними.

Оказалось, ларчик открывался достаточно просто. Если в MS SQL Server Management Studio я захожу не под локальной учеткой SA, а под доменной compd.khlebalin, то на mdf и ldf файлы восстановленной базы тоже должны быть полные права у этой учетной записи. Можно каждому файлу раздать права а можно дать себе право на всю папку с файлами и наследовать разрешения ко всем файлам этой папки:

После чего вновь монтируем восстановленную базу, и как видим, более ошибка не возникает:

Источник

How to Fix Microsoft SQL Server Error 5123

When you try to login Microsoft SQL Server but unable to get the permission or cannot attach the database (db), you probably are having a Microsoft SQL Server error — 5123. EaseUS software has collected effective methods to help you fix SQL Server 5123 error by using a manual method and SQL Server recovery software/tools.

The solutions on this page can be applied to resolve 5123 error with access denied or database attach failure in MS SQL Server 2014/2012/2008 R2/2005.

When you try to attach a database in SQL Server, but get an error message, reporting that «Microsoft SQL Server, Error: 5123» as the image shown below:

You will not be able to access the SQL Server database. Check the list of reasons that cause SQL error 5123, and if you find that your problem matches the listed reasons, read on to find the solution and fix this error:

  • Database Attach Failure: Attaching and detaching database data file with several different logins.
  • Access Denied: Attach a database which is placed on a different location and doesn’t have sufficient privileges to the folder directory or no proper permission to run the program folder.

Although, many experienced administrators know how to resolve the 5123 error in SQL Server. It’s still necessary to know better and more effective methods to fix and repair more SQL Server database problems. Read on, and learn how to fix SQL Server 5123 error on your own.

Manual workaround to fix MS SQL Server 5123 error

By following the below manual steps, you’ll be able to resolve the Microsoft SQL Server error 5123 quickly:

  • Step 1: Run SQL Server and right-click on the MDF or NDF file that you wish to attack.
  • Step 2: Select «Properties» to check the permission of .mdf or .ndf file.
  • Step 3: Click the «Add» button to grant the login permission and gain full control during the login process.

Also, you can attempt «Run as Administrator» to gain permission instead of granting permission to a new user.

If you are using MS SQL Server Management Studio (SSMS) or Transaction SQL Server (T-SQL) to configure and manage the SQL Server, you can use these two tools to resolve the 5123 error.

Also, you can turn to a third party MS SQL Recovery tool for help.

Use SSMS to fix SQL 5123 error

  • Step 1: Log in to SSMS: use valid domain credentials and Windows Authentication to log in.
  • Step 2: Click on «Object Explorer», select «Database».
  • Step 3: Right-click on the database that you are trying to attach, and select «Attach».
  • Step 4: Click «Add» when a new attach database dialog box appears.
  • Step 5: Select the database, confirm the MDF and LDF files are running alright. And click «OK» to finish.

Then, you can view all attached database files in MS SQL Server again.

If the program reminds you that the MDF file is corrupted, relax, follow the link here and apply EaseUS MS SQL recovery tool to repair corrupted MDF file immediately.

Use T-SQL to resolve MS SQL 5123 error

Transaction SQL Server with its sp_attach_db stored procedure can help you easily attach all desired databases in SQL.

Here are the detail process of attaching SQL Server databse:

  • sp_attach_db
  • [@dbname=] ‘dbname’
  • ,[@filename1=] ‘filename_n’ [ ,…16 ]
  • [@dbname=] – Refers to the name of the database to be attached to the server.
  • [@filename1=] – ‘filename_n’ Is the physical name, including path, of a database file

Use SQL Server recovery tool to solve MS SQL error 5123

If the above-provided methods don’t work efficiently to resolve the 5123 attach database error in SQL, you can go for a reliable SQL Server recovery tool for help. It helps you to repair corrupted MFD and NDF file in SQL Server and some other complex database corruption issues. This software enables any user to operate SQL Server repair with its clear and self-explanatory interface.

Note: Mostly, EaseUS SQL Server Recovery can always work to fix this issue. But if it fails in a rare case, you can turn to Microsoft customer support team for help.

Step 1. Run EaseUS MS SQL Recovery.

Step 2. Select the MDF/NDF file: Click «Browse» or «Search” to navigate the location of your MDF or NDF file > Click «Repair».

Step 3. Select the database objects you want to recover: When the process has completed, select the database objects you want to recover and click «Export».

Step 4. Export the database to the database or export the selected items as SQL scripts. If you choose «Export to database», you will need to enter the required information and select the destination database, either a new one or an existing one.

Hence, we would like to recommend you always to keep this software handy. In addition to solving this error, EaseUS SQL Server Recovery can be used to rectify other SQL database problems too:

  • Resolve SQL Database corruption with 823/824/825 error
  • Recover deleted SQL records
  • Repair MDF/NDF file
  • Recover ROW and PAGE compressed data
  • Free to preview the repaired database before activation
  • Save the repaired file in MS SQL (MDF), HTML, XLS & CSV formats
  • Support transferring the license to another system (one key for three systems)

Источник

Понравилась статья? Поделить с друзьями:
  • Microsoft sql server error 262 как исправить
  • Microsoft office word сбой активации продукта как исправить
  • Microsoft office cannot open this file because some parts are missing or invalid как исправить
  • Microsoft office 2016 сбой активации продукта как исправить
  • Microsoft office 2013 сбой активации продукта как исправить