Forum Replies Created

Viewing 15 posts - 16,771 through 16,785 (of 39,831 total)

  • RE: Shared SQL Server

    Patching is a big concern, especially if you use things like SSIS differently between them.

    The load, as mentioned, is something I'd be careful of, and I'd examine the memory usage...

  • RE: SQL DISTINCT on Multiple Columns

    The input data has been fixed.

    If this article was something you already knew, then it wasn't for you, and I'm not sure it makes sense for you to rate it...

  • RE: I lied, now what?

    SanDroid (2/7/2011)


    Steve Jones - SSC Editor (2/7/2011)


    I never said I would fire someone that asked for a raise twice. You totally misread that. I said that if you were soliciting...

  • RE: Clustered index update

    Also be aware that the execution plan adds up to 100%, so something will take up resources. If you have the index on fields that the update can use, then...

  • RE: Job Activity/Database Maintance Plan

    Not sure what's recovered. You'd have to look further up in the log, but this instance has two startup procedures that are being executed. You can mark a stored procedure...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (2/7/2011)


    Picture does not appear to have posted, Steve.

    Doh!

    It's here: http://twitpic.com/3x4s18

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (2/7/2011)


    Steve Jones - SSC Editor (2/7/2011)


    Not sure why Jeff or Ron weren't at the Sunday morning run, but I'm sure they'll be at the next one :-P:hehe:

    Oh, I...

  • RE: Are the posted questions getting worse?

    Trey Staker (2/7/2011)


    Threadizens, What are you currently using to run virtual servers on your desktops/laptops?

    VirtualBox.

  • RE: D.R. - Local to Remote Backup

    First, do you have database files and log files separate? If so, you would typically want to back up to the log file disk, not the data file disk.

    If not,...

  • RE: Increase MDF file size of 2GB

    You can just set a new size for the .mdf files with ALTER Database

    USE master;

    GO

    ALTER DATABASE AdventureWorks2008R2

    MODIFY FILE

    (NAME = test1dat3,

    SIZE =...

  • RE: Job Activity/Database Maintance Plan

    Is there a schedule set for the job? If you look in the properties, what does it say?

    Is SQL Agent running?

  • RE: user list and permissions

    Look at Pivot or search for crosstab queries. That's what you are trying to do.

    Note that these aren't very efficient, so as long as this isn't a large set of...

  • RE: I lied, now what?

    kenny-892481 (2/7/2011)


    I'm confused Steve. You would want to fire one of your employees if they asked for a raise more than once, but you would want an employee that lied...

  • RE: Transactions in an archive process

    Brandie has a great point. What you have written will move everything, but you ought to have error handling.

    I might also write a "check" routine that verifies the counts of...

Viewing 15 posts - 16,771 through 16,785 (of 39,831 total)