Why can't I browse deeper into the folder, I still have some folders there:
views:
45answers:
2The subfolders in users are often password-protected and can only be accessed by the owner of the user folder. If the folder you are trying to access is your own, then you may have a permissions problem and need to modify the folder settings in your OS.
Try navigating to the folder outside of SQL Manager, in Windows Explorer. If you still can't access the folder you may need to try logging on an administrator-level user and modify the folder permissions.
Your SQL Server service account likely does not have access to the folder you're attempting to browse. The ideal solution (from a security perspective) would be to move the file to another, non user-specific location. However, what you're trying to do can be done.
- Determine the SQL Server instance service account. To do this, view your computer's services and locate "SQL Server" or "SQL Server (instancename)". Double-click and select the "Log On" tab to determine the account being used.
- Starting with the user's folder, alter the security to grant read and browse permission to the user located in step 1. You'll need to do this for each folder in the path, starting with the the user (in other words, if it's in
C:\Documents and Settings\user\Desktop
, you'll have to do this onuser
andDesktop
). - Locate the specific file you wish to attach and grant read and write privileges to the same account.
To alter the permissions on a folder or file, right-click and select "Properties", then the "Security" tab. You can add additional permissions by clicking "Add..." and locating the user that you want to explicitly grant (allow) or deny permissions to.