Forum Replies Created

Viewing 15 posts - 16 through 30 (of 457 total)

  • RE: Backup Database from Web server to local hard drive

    If you create a share on your computer that the SQL server service account has read/write/modify permissions on you can reference a UNC in your backup statement to backup across...

    Gethyn Elliswww.gethynellis.com

  • RE: SQL SERVER 2008 R2 SP2 Upgrade

    That's avery open ended question.

    I guess you are considering applying the latest service pack to your SQL Server.

    All I can really is test thoroughly - make sure it behaves...

    Gethyn Elliswww.gethynellis.com

  • RE: enable filestream

    Do you have a filestream file group configured in your database?

    Gethyn Elliswww.gethynellis.com

  • RE: enable filestream

    Good, pleased its working for you.

    Gethyn Elliswww.gethynellis.com

  • RE: enable filestream

    It needs to be turned on at the instance level to

    It can be done through the GUI or you can use sp_configure

    EXEC sys.sp_configure N'filestream access level', N'2'

    GO

    RECONFIGURE WITH OVERRIDE

    GO

    Gethyn Elliswww.gethynellis.com

  • RE: Monitoring SQL Server with Oracle Grid

    Paul, that was the thinking, a shop asked me about using ORACLE Grid for monitoring, they are mainly an Oracle shop and need people to cross skill into SQL Server....

    Gethyn Elliswww.gethynellis.com

  • RE: Sending mail on database Grwoth exceed the Specified limit

    You can setup Alerts in the SQL Agent to alert you via email when the database grows.

    Gethyn Elliswww.gethynellis.com

  • RE: I'm using SQL Server 2005. It doesn't seem to recognize the TRY/CATCH block.

    It does sound like the compatibility mode has not been changed following the upgrade, follow the steps described above to change it to 90 and try again.

    Gethyn Elliswww.gethynellis.com

  • RE: Logshipping + Index rebuilding

    ravisamigo (3/21/2011)


    Dear All,

    1) If I have performed index rebuilding on one table in logshipped database/Primary database, will it effect the same to secondary database or do we need to again...

    Gethyn Elliswww.gethynellis.com

  • RE: Service account's privilege trouble

    You said that the account has permissions on X:\SQL folder, does it definately have permissions on the systemmdb sub folder too?

    Gethyn Elliswww.gethynellis.com

  • RE: Service account's privilege trouble

    How did you change the sql server service account? Did you use configuration manager or did you use the services.msc pluggin?

    Gethyn Elliswww.gethynellis.com

  • RE: Failed reindex caused massive DB file growth

    It's best to size your databases accordingly allowing for future growth.

    Shrink databases will causes massive fragmentation in your indexes, which in turn can cause bad performance.

    TheSQLGuru's technique of dropping all...

    Gethyn Elliswww.gethynellis.com

  • RE: Failed reindex caused massive DB file growth

    What recovery model is the database in and how frequently do you take transaction log backups?

    Is possible the reindex casued the log to grow and your are not taking log...

    Gethyn Elliswww.gethynellis.com

  • RE: Table Backup

    Sorry mis-read the question. To backup an entire database you could use SSIS to export the data in a table to a file or another table, but there is no...

    Gethyn Elliswww.gethynellis.com

  • RE: Table Backup

    No it's not possible. I'm not aware of any Third Party Products that do this.

    You could try restoring the whole database under a different name and then copying the rows...

    Gethyn Elliswww.gethynellis.com

Viewing 15 posts - 16 through 30 (of 457 total)