Forum Replies Created

Viewing 15 posts - 4,576 through 4,590 (of 6,026 total)

  • RE: Get Table Structure of Stored Procedure Output Table

    I vaguely recalled something about SQL Server 2012 adding some additional system stored procedures that return a resultset describing metadata that would be returned from a specified batch of T-SQL,...

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

    Gary Varga (4/16/2014)


    Eric M Russell (4/16/2014)


    Jim P. (4/15/2014)


    I've introduced more manager to the following:

    You always have choice:

    1. Cheap

    2. ...

  • RE: Tools

    robin.pryor (4/16/2014)


    Eric M Russell (4/15/2014)


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

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

Viewing 15 posts - 4,576 through 4,590 (of 6,026 total)