Forum Replies Created

Viewing 15 posts - 31 through 45 (of 49 total)

  • RE: Limited Stored Procedure and View permissions

    Is the question really dumb or has nobody done it before? LOL

  • RE: Restore/Backup minimal permissions

    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...

  • RE: Restore/Backup minimal permissions

    It couldn't be that simple, could it???? @:-)

  • RE: Restore/Backup minimal permissions

    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...

  • RE: Import Stored Procedure Scripts

    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...

  • RE: SQL tempDB and Log on same drive

    Thanks for the reply but I need something I can take with me to justify the seperate LUNS for tempDB and Logs.

  • RE: Restore to new column lenght

    It makes sense now. Thank you for the replies!

  • RE: Restore to new column lenght

    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...

  • RE: Frequent General Network error

    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...

  • RE: Frequent General Network error

    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...

  • RE: Frequent General Network error

    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...

  • RE: Frequent General Network error

    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...

  • RE: "##MS_PolicyEventProcessingLogin##" errors

    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!';

  • RE: View log cache size

    Are your disk spindles shared with other applications? Does it happen to be a NetApp SAN?

  • RE: dbcc physical_only WITH (STATE =online)

    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.

Viewing 15 posts - 31 through 45 (of 49 total)