Forum Replies Created

Viewing 15 posts - 511 through 525 (of 2,487 total)

  • RE: New Poll

    I've never failed a software project, but I've had a few fail me

    --------------------
    Colt 45 - the original point and click interface

  • RE: Constraint definition

    All

    Fixed this by using a simple trigger.

    CREATE TRIGGER trg_codes 
    ON dbo.codes 
    FOR UPDATE, INSERT
    AS
     IF EXISTS (
       SELECT ext.[ID]
       FROM inserted ins
        INNER JOIN [dbo].[codes] ext
        ON ext.[Code] = ins.[Code]
        AND ext.[EMail] = ins.[EMail]
        AND ext.[ID]...

    --------------------
    Colt 45 - the original point and click interface

  • RE: xp_cmdshell

    Yes I know why.

    One of the connections in the package you're running can't access it's specified server. The big give away the message "[ DBNETLIB ] [ ConnectionOpen ( Connect ( )...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Constraint definition

    It won't fail ... that is the issue. I need to apply a business rule that the same address cannot be assigned to the same code unless its the generic...

    --------------------
    Colt 45 - the original point and click interface

  • RE: User Defined Functions Investigation

    But I think more in line with what Carl is trying to produce,

    "So as a rule you should avoid using functions"

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: User Defined Functions Investigation

    Sergiy, Hmmm ... the @Array table could have been some bits I didn't cleanup from an earlier revision, the function definitely doesn't...

    --------------------
    Colt 45 - the original point and click interface

  • RE: User Defined Functions Investigation

    This is the function I use for splitting values. It takes advantage of a "Numbers" table to provide a set-based query. I suppose the actual query could be used as...

    --------------------
    Colt 45 - the original point and click interface

  • RE: User Defined Functions Investigation

    Sergiy, I'm beginning to think that there may be something wrong with the system you're running these tests on.

    I ran each of...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Poll #3

    Johnny Mnemonic is a short story Gibson wrote before Neuromancer.

    http://www.antonraubenweiss.com/gibson/gibson3.html

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Poll #3

    Coming late to the party here.

    Like all suggestions here and agree War Games has to be at the top. Probably because it's something I can relate to

    --------------------
    Colt 45 - the original point and click interface

  • RE: try to locate gabriela nanau

    Why not just send a PM?

    http://www.sqlservercentral.com/forums/userinfo.aspx?id=150225

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Can I use DTS Execute Process Task to call Access

    You might run into instances of the scheduled job hanging while it's waiting for a user response (who knows what is in the macro that's being run

    --------------------
    Colt 45 - the original point and click interface

  • RE: how to substract from getdate()

    ... or just to be different

    DateAdd(hh, -24, GetDate())
     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Dynamic import of spreadsheets

    Take a look over at http://www.sqldts.com

    They have a good article on processing a global variable rowset which should give you the building blocks you need. As suggested you would...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Is This Possible in Sql?

    "...Mind i m required to compare only time not the dates and @startTime value is always less than @EndTime value)..."

    Given this statement, the data you supplied is incorrect

    set @StartTime='12/1/2005 12:30:49...

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 511 through 525 (of 2,487 total)