Forum Replies Created

Viewing 15 posts - 29,266 through 29,280 (of 39,771 total)

  • RE: Renaming all tables in a Database

    Use the ms_foreachtable or just write a cursor that loops through the output from

    select table_name

    from information_schema.tables

    where table_name like 'tbl_%'

  • RE: Backup failed

    This is a Windows error, and possibly a driver/hardware issue. I found a few references similar to this one: http://support.microsoft.com/kb/259573

  • RE: What is the Use of QUOTED_IDENTIFIER

    You can read about it in Books Online, but as Kent mentioned, it's to handle objects that have names with quotes in them.

  • RE: Finding a sequence of rows that match another sequence of rows

    If it's a variable number of pages in the flow, I'm not sure what a good T-SQL solution would be. In fact, it might be worse than some loops. You'd...

  • RE: Scaling Out

    Thanks for the notes and I agree with webrunner. Lots of us want to just add a server to distribute load.

    Thanks for the RAC notes. I don't know a lot...

  • RE: SQLserver.com clock wrong?

    DST kicked in on Sunday in the US, which is how the servers work.

    I think that the rest of the world might have a different DST date.

  • RE: NCAs and NDAs

    It is ultimately management's responsibility to find a balance (and yours), but having been through some long negotiations when selling this site, I'll tell you that it's hard to be...

  • RE: NCAs and NDAs

    I've actually had some reasonable NCAs, especially when negotiating with management. My experience has been the lawyers typically present these worst case scenarios, and end up trying to get things...

  • RE: Attach/detach and file location

    Detaching /Attaching on the same server will not orphan users. The users are mapped to SIDs on that instance, so as long as the databases are attached to the same...

  • RE: Find same sounding emails

    Look up patindex or charindex in BOL. Perhaps SOUNDEX would work as well.

  • RE: User unable to connect to database

    It seems some of your terminology is mixed up. There isn't a "Users" group on the server, unless you mean the OS, in which case, specify that. However the user...

  • RE: How to test backup?

    The only way to test the backup is to test restore it to another database. You should periodically, perhaps monthly at least, restore a database from a backup that is...

  • RE: Email Reminder Software

    Maybe someone here wants to write one and open source it! Or make an article. 🙂

  • RE: RESTORE VERIFYONLY

    You could schedule a job to run after the maintenance plan (or add a step) that runs this for a backup and then parse the results.

    The maintenance plan should have...

  • RE: Parameter validation failed

    It's likely some data issue. Have you checked to see if there are formulas or calculations that might be data dependent? Meaning something like a divide by 0 is occurring.

Viewing 15 posts - 29,266 through 29,280 (of 39,771 total)