0

I have a cluster DB, and i am trying to attach DB files, it doesn't let me navigate to any other drive except for DB? Is there something wrong that i am doing?

Example, if my DB is created in F:\, i am allowed to attach only to mdf files from F:\

[EDIT/ SOLUTION] I found the solution on my own, I will need to add another storage to the cluster, if it is a mount point then assign a drive letter, and add dependency on the cluster resource, this would then allow me to attach to the DB as the drive letter is visible in the sql server management studio

Nida Sahar
  • 103
  • 2
  • 5
  • Has either of these responses answered your question. Other can we have more information maybe a screenshot from you cluster administrator. – Bernie White Nov 04 '12 at 19:14
  • Nop, i found the solution on my own, i will need to add another storage to the cluster, if it is a mount point then assign a drive letter, and add dependency on the cluster resource, this would then allow me to attach to the DB as the drive letter is visible in the microsoft sql server studio – Nida Sahar Nov 04 '12 at 19:20
  • If you could add that as an answer and close the question that would be great. – Bernie White Nov 04 '12 at 19:21

3 Answers3

1

In Windows Failover Clustering an SQL Server instance is one part of a Resource Group. A Resource Group also contains disks for the SQL Server installation and data files.

You will only be able see and add data files to/for drives that exist as part of the same Resource Group within a SQL Server instance.

If you need to add more disks the cluster administrator can do this for you or see http://technet.microsoft.com/en-us/library/ff182326(v=ws.10).aspx.

Hope that helps.

Bernie White
  • 1,024
  • 7
  • 17
0

Is the other drive a local drive on one of the nodes? If so, you can't use that for storing a clustered DB because in the event of a failover the new owner won't be able to bring the database back online.

The storage for your databases needs to be a target visible to all the nodes in the cluster, and also needs to be part of the failover group that holds your SQL instance.

Chris McKeown
  • 7,168
  • 1
  • 18
  • 26
0

I found the solution on my own, I will need to add another storage to the cluster, if it is a mount point then assign a drive letter, and add dependency on the cluster resource, this would then allow me to attach to the DB as the drive letter is visible in the sql server management studio

Nida Sahar
  • 103
  • 2
  • 5