Forum Replies Created

Viewing 15 posts - 196 through 210 (of 361 total)

  • RE: Log Shipping Overhead - Documentation Needed

    No one else has had a go, so I will try to help.

    I use log shipping all the time.  It is lightweight and works effectively.  That said, I always roll...

  • RE: Serious BackUp Troubles

    Its a long shot, but you could check open transactions on the database in question.  Perhaps something has been left open...

  • RE: Tempdb suspect

    you could restart the server, as this rebuilds tempdb from model.

    Unless anyone knows why you can't?

     

     

  • RE: Reporting Services Makes Server Support Easier

    Yes I thought so too.

    However:

    select user_name(grantee_principal_id), permission_name, state_desc from sys.database_permissions where major_id = object_id('xp_fixeddrives')

    tells me that public has exec granted.

    The following:

    create login bob

    WITH PASSWORD =...

  • RE: Reporting Services Makes Server Support Easier

    what permissions do you need to successfully run xp_fixeddrives on 2k5?  I find that a basic user ends up with an empty result set but no error messages!

     

     

  • RE: Should tables be clustered?

    well, if you can sensibly cluster on the your core search requirements then there is a good chance of a significant benefit.  As I say, it all depends on how...

  • RE: backup to usb??

    yes.  but make sure your server supports the usb drive.  If you have more than a couple of gb of data avoid usb1 .... its embarrassing.

  • RE: Should tables be clustered?

    Sounds facetious, but the answer is that it depends.

    If you post a sample create table script with some typical usage queries and data population statistics we can give you some...

  • RE: How to fix a non-indexed huge table?

    or you could just exec sp_rename...

  • RE: How to fix a non-indexed huge table?

    If you create a unique clustered index on this you will have a serious impact on the server, and probably gain nothing.  The identity value you put on will not...

  • RE: Storing IPs in SQL Server

    Surely your choice of index for the large range could have been better?  Yes the highly specific reversed order may be better for a particular lookup, but for a ranged...

  • RE: Finding Rowcount problem

    Its not viable.  Pretty much anything (including count(*)) on this table provokes instability, and it takes 30m inserts a day, mission critical.  The pure and simple problem is that the...

  • RE: Finding Rowcount problem

    Ahaha ok, it seems there is a rowcnt column as well as a rows column,  rowcnt is bigint rows is only int.

    I shall mod my procs to use rowcnt where...

  • RE: Practical Methods: Naming Conventions

    anyone from the objectVerb, no prefix school looking for a job in london?

  • RE: Practical Methods: Naming Conventions

    Aye, I agree with Eddie, can't stand these daft prefixes people get taught at university/polly.

    Plural/Singular it doesn't really matter that much, as long as it scans well.  Closer you get...

Viewing 15 posts - 196 through 210 (of 361 total)