Forum Replies Created

Viewing 15 posts - 22,801 through 22,815 (of 39,824 total)

  • RE: Server login assigned to "dbo" user within database

    check sys.database_principals in those databases. Is QC a user in there that is perhaps orphaned from a SID? Or sp_change_users_login with the report option.

  • RE: Restoring DB to a different drive

    There isn't any real best way to do this. You point at the new drives in the WITH MOVE statement and let it run. It should run a little quicker...

  • RE: Your Thoughts on ORM Tools

    As far as experienced DBAs, we have had Brad look to tune things. The problem is the ORM layer isn't "tuneable" in that we can't specify the queries in some...

  • RE: Gain Space Using XML data type

    Excellent explanation, Paul. Perhaps we should have you writing XML articles 😉

  • RE: Are the posted questions getting worse?

    I will sneak a picture of Jeff at some point and post it up here. Don't worry, we'll track him down at some point.

  • RE: Loyalty Cards

    For quite a few businesses where I don't care about them tracking me, as in it's a one time purchase or I don't trust them, especially online, I give out...

  • RE: Loyalty Cards

    I tend to like those businesses that just have cards that are punched. The QDoba one does take an email, and they periodically send me coupons (like for my Apr...

  • RE: Update table with value in the same table.

    You'll need a subquery here, but you want to write this as a select. Find the rows with a null and then join that back and find the previous row.

    We...

  • RE: month value in vb script

    Cast to string, check if it's 1 character, and if so, add a "0".

    It returns a number. "01" is not a number, according to western math.

  • RE: Master list of tasks for a complete backup

    Do you mean database backup only and not server backup?

    Pretty much everything is stored inside SQL Server. If you restore master and msdb, you have covered all the issues with...

  • RE: Question about replication jobs and notifications

    I say B. always better to keep your process and add to it, IMHO

  • RE: Scripting

    It's mostly a visual language where you connect tasks on a designer and make property adjustments. Many of the scripting items have helpers that let you "build" an expression. however...

  • RE: Please HELP!! A T-SQL Query Question.

    We'd like to see you make an attempt. Basically you are attempting a cross tab, so if you search for help there, that might work for you. Or look at...

  • RE: Backup and Restore Tables

    I think you are reading too much into the wording. There is a Repair_allow_data_loss operation as part of DBCC CHECKDB. Yes, it is a parameter, but the author appears to...

  • RE: Need suggestion on data synchronization

    I've seen lots of people use replication to do just this.

    When you talk about code, are you looking for mistakes, like Spelling? The easy way to introduce custom code is...

Viewing 15 posts - 22,801 through 22,815 (of 39,824 total)