Forum Replies Created

Viewing 15 posts - 1 through 15 (of 43 total)

  • RE: SQLServerCentral apologizes and you can win a book

    -- Will SQL 4 Food - FTW!

    declare @t table (name varchar(50), original_content_count int)

    insert into @t (name, original_content_count)

    values ('Kamil Moscicki', 0), ('Itzik Ben-Gan', 107), ('Kalen Delaney', 98), ('Steve Jones', 587)

    selectname, original_content_count,...



    But boss, why must the urgent always take precedence over the important?

  • RE: THREADPOOL waits - what are they, and how are they resolved?

    Anyone?

    Seriously - this is a hard one to answer, isn't it? And it's hard to research, too!

    To spur your thinking, here's more detail:

    My database is a high transaction environment,...



    But boss, why must the urgent always take precedence over the important?

  • RE: Renaming a sql 2005 server

    We recently changed the machine names on three of our development servers. We only run one instance of SQL Server on each and the only issues I had were:

    -...



    But boss, why must the urgent always take precedence over the important?

  • RE: Installing Database Server in Windows Vista

    I run Vista on a laptop with 2GB memory and dual hard drives. I installed SQL Server Express 2005 and the available management tools with no problems. You'll...



    But boss, why must the urgent always take precedence over the important?

  • RE: Bad Automation

    Hear! Hear!

    Even worse is working for a big corporation that has an entire department dedicated to this sort of thing, and remotely forces reboots. I frequently got a...



    But boss, why must the urgent always take precedence over the important?

  • RE: Best Way to Calculate Age

    I voted for choice A because B doesn't account for leap years, and C is wrong.

    There are two problems in the case statement. It requires both the day and...



    But boss, why must the urgent always take precedence over the important?

  • RE: The DBA Routine

    As far as #10, how do you deal with a situation where the application is a 3rd party app and you can't make performance improvements?

    SQL Server is a machine of...



    But boss, why must the urgent always take precedence over the important?

  • RE: A Matter of Degree

    I started down the path toward a Computer Engineering degree but eventually switched and earned a BS in mathematics. I taught high school for two years, then cut my...



    But boss, why must the urgent always take precedence over the important?

  • RE: Deadlock Notifications in SQL Server 2005

    Great article!

    As for the DMV, I concur with LP. The sys.dm_os_performance_counters view is constantly incrementing various counters of performance that SQL Server reports to the O/S. As written,...



    But boss, why must the urgent always take precedence over the important?

  • RE: HELP! I deleted the log files for my db. I need to restore ASAP

    I know this is solved, but for future reference and for other readers, if you have an MDF you're largely okay.  Any pending transactions would be gone and you'd lose...



    But boss, why must the urgent always take precedence over the important?

  • RE: moving log file of user database

    I have two possible solutions for you:

    You can backup the database and restore it using the WITH MOVE <logical log name> TO <os file name>.  This will allow you to specify...



    But boss, why must the urgent always take precedence over the important?

  • RE: Hard at Work

    My previous employer is a large package delivery company, where my worth was measured very much by time in the building rather than quality of performance.  A minimum of 45...



    But boss, why must the urgent always take precedence over the important?

  • RE: Question of the Day for 13 Jul 2007

    Arrrgghhh!  Answered it right but got it wrong!

    Ditto Rhonda...



    But boss, why must the urgent always take precedence over the important?

  • RE: Issue with changing MaxFileSize

    I've run into similar situations.  Mine are usually some variant of an obscenely high percentage growth number.  I generally set databases to automatic growth, but with a max size.  I usually...



    But boss, why must the urgent always take precedence over the important?

  • RE: Log File Growth

    I've had occasional problems with the UI, but a script will get the job done for you.  Something like this:

    USE

    [master]

    GO

    ALTER

    DATABASE



    But boss, why must the urgent always take precedence over the important?

Viewing 15 posts - 1 through 15 (of 43 total)