Viewing 15 posts - 31 through 45 (of 49 total)
Is the question really dumb or has nobody done it before? LOL
November 8, 2010 at 2:38 pm
Here is the script I came up with to finalize the permissions on all of our servers. If someone would like to add some error handling please do so.
EXEC master..sp_dropsrvrolemember...
November 3, 2010 at 3:57 pm
It couldn't be that simple, could it???? @:-)
November 3, 2010 at 9:35 am
I did some testing in SQL 2008 and found a way around the sysadmin role. Here is the minimal permissions needed for backup and restores.
Server Level Permissions:
*dbcreator
*public
Database Level Permissions:
*db_backupoperator
*db_denydatareader
*public
Here...
November 3, 2010 at 8:35 am
Here is what I finally did to accomplish task:
navigated to the folder containing all the Stored Procedures
Ran the following command c:>\dir /b >c:\SP_File.txt
********* SP_File.txt ************
vm_my_StoredProd1.sql
vm_my_StoredProd2.sql
vm_my_StoredProd3.sql
vm_my_StoredProd4.sql
~ truncated
**************************
Opened the SP_File.txt in...
August 31, 2010 at 6:01 am
Thanks for the reply but I need something I can take with me to justify the seperate LUNS for tempDB and Logs.
August 13, 2010 at 8:38 am
It makes sense now. Thank you for the replies!
August 6, 2010 at 8:29 am
My college professor told me that the varchar data type doesn't take up disk space but it does affect memory allocation. Is that not true?
They also created a clustered...
August 6, 2010 at 7:43 am
Those results look normal but you'll have to run the tracert when you are getting the time-out errors. Are you sure that was test across the WAN from PlantA to...
July 1, 2010 at 10:26 am
You have a networking issue like the others have stated. Use two different workstations and ping two different servers at the same time. This will tell you if its...
July 1, 2010 at 7:57 am
The first couple steps is process-of-elimination.
Run the following command from a workstation that is getting the errors.
C:\>ping -t MYSQLSERVER>c:\monitoring.log
Let the ping process run all day and make sure you...
June 30, 2010 at 7:37 am
How often do the errors occur, once or twice a day or every 15 minutes?
Is everyone in the plant getting the errors or a selected few?
What time of day...
June 29, 2010 at 8:35 am
It was an orphaned account in the MSDB database. The following two commands fixed it.
exec sp_change_users_login ‘report’
EXEC sp_change_users_login 'Auto_Fix', '##MS_PolicyEventProcessingLogin##',NULL, 'Password01!';
June 23, 2010 at 12:01 pm
Are your disk spindles shared with other applications? Does it happen to be a NetApp SAN?
June 23, 2010 at 7:35 am
Thanks for the reply but I had a blonde moment there. I combined two different questions I was going to ask. I'll re-write them later from home.
June 22, 2010 at 2:54 pm
Viewing 15 posts - 31 through 45 (of 49 total)