Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I must migrate a cluster with 6 SQL Server instances and a lot of database to SMSQL. I don't understand very well SMSQL manual about MountPoints. Help, I need to know if I can put all objetcs on a MountPoint:
- Databases LUN
- Logs LUN
- SnapInfo LUN
- System Databases LUN
Thank You very mutch.
Solved! See The Solution
1 ACCEPTED SOLUTION
migration has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You need different LUNs (and therefore mountpoints) for Snapinfo, UserDBs and UserLogs and since it's best practice also for the TempDb and the TempLog. A possible structure would be for example:
X: --> driveletter as "root" LUN (per instance as install directory of the SQL instance, also containing the SYSDbs)
X:\<instancename>_UserDB --> mountpoint
X:\<instancename>_UserLOG --> mountpoint
X:\<instancename>_TempDB --> mountpoint
X:\<instancename>_TempLOG --> mountpoint
X:\<instancename>_Snapinfo --> mountpoint
For the next instance you can create the same structure with a new drive letter as "root" LUN.
4 REPLIES 4
migration has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You need different LUNs (and therefore mountpoints) for Snapinfo, UserDBs and UserLogs and since it's best practice also for the TempDb and the TempLog. A possible structure would be for example:
X: --> driveletter as "root" LUN (per instance as install directory of the SQL instance, also containing the SYSDbs)
X:\<instancename>_UserDB --> mountpoint
X:\<instancename>_UserLOG --> mountpoint
X:\<instancename>_TempDB --> mountpoint
X:\<instancename>_TempLOG --> mountpoint
X:\<instancename>_Snapinfo --> mountpoint
For the next instance you can create the same structure with a new drive letter as "root" LUN.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for de answer.
But, the manual sais: You cannot store database files on a mount point root .
Then, SYSDbs can be stored on mount point root?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, it's possible to store the SYSDBs in the root because the SYSDBs are not backed up via snapshot but dumped with SQL Server functionality.
Of course you could also add an additional mountpoint per instance as system root, just for the installation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I understand. Thank you very mutch.
