Forum Replies Created

Viewing 15 posts - 4,591 through 4,605 (of 6,038 total)

  • RE: Doing What It Takes To Get The Job Done

    Jim P. (4/15/2014)


    I've introduced more manager to the following:

    You always have choice:

    1. Cheap

    2. Fast

    ...

  • RE: blocking

    First, understand that blocking is normal, it's kind of like the locking latch on a bathroom stall door. There are 100+ different reasons why a process can be temporarily blocked....

  • RE: Tools

    The xp_logininfo stored procedure can be used to return the members of a domain group.

    A couple years back I wrote a script that combines sys.server_principals and xp_logininfo to return individual...

  • RE: Potential Locking Issue - Inserts Failing Due to Duplicate Values

    Since you're posting in the SQL Server 2008 forum, I'm assuming the legacy database has been ported over to this version. The solution below may also require the database Compatibility...

  • RE: It's Not All About The Keys

    We could create a DDL trigger or a nightly job that replicates sys.databases to a dbo.DatabaseList table. Also, we don't really need a dbo.BackupList table and foreign key just to...

  • RE: Doing What It Takes To Get The Job Done

    Gary Varga (4/15/2014)


    Eric M Russell (4/15/2014)


    I'm glad to hear that your nephew is the type who stays after hours to get the job done. He'll go far. Just think how...

  • RE: Doing What It Takes To Get The Job Done

    I'm glad to hear that your nephew is the type who stays after hours to get the job done. He'll go far. Just think how useless a surgeon, attorney, or...

  • RE: How Long Before You Upgrade?

    I wish Microsoft had called this latest release SQL Server 2012 R2. Now those of us not planning to use v2014 in the forseeable future look like fuddy-duddies.

  • RE: Big Data - Cost of acquiring skills

    I've got half a dozen retired PC boxes stacked in a corner under my desk on which I'm installing a Ubuntu / Hadoop cluster. My intention is to prove whether...

  • RE: It's Not All About The Keys

    ALTER TABLE [dbo].[databases]

    WITH CHECK ADD CONSTRAINT [FK_backlist_backuplist]

    FOREIGN KEY([name])

    REFERENCES [dbo].[backuplist] ([name])

    First, are we creating the [databases] table? There is no table by that name, but there...

  • RE: Big Data - Cost of acquiring skills

    If management allows an hour for lunch and places no restrictions on how early one can enter the office or how late one leaves, then there can always be time...

  • RE: How Long Before You Upgrade?

    Going from v2000 to v2005 was obviously a leap forward in terms of how SQL Server database are implemented and coded. To a lesser extent v2008 had some compelling features...

  • RE: If or When?

    Steve Jones - SSC Editor (4/11/2014)


    Eric M Russell (4/11/2014)


    Obviously the government, whether it be Congress or some agency dedicated to the task, can't come up with the standards; it has...

  • RE: If or When?

    Steve Jones - SSC Editor (4/11/2014)


    Eric M Russell (4/10/2014)


    The standards would not have to be very technical. Dedicated sysadmin accounts, removal of service accounts from sysadmin role, seperation duties, application...

  • RE: If or When?

    Gary Varga (4/11/2014)


    john.riley-1111039 (4/11/2014)


    There are many circumstances in life where we prepare for relatively unlikely events. We install sprinklers and fire extinguishers in buildings,

    air bags in cars, pilots...

Viewing 15 posts - 4,591 through 4,605 (of 6,038 total)