Forum Replies Created

Viewing 15 posts - 29,311 through 29,325 (of 39,818 total)

  • RE: How to get an application to activate the application role?

    You can test it in QA by running SP_setapprole, but that's not how users use it.

    Your users still need to have a login/user on SQL Server, albeit with no rights....

  • RE: SQL 2005 x64 and SQLH2

    I'd post this as a bug on Connect, ask for some votes (post the URL here) and see if you can get a good answer from MS. Or have someone...

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

Viewing 15 posts - 29,311 through 29,325 (of 39,818 total)