Forum Replies Created

Viewing 15 posts - 5,686 through 5,700 (of 8,753 total)

  • RE: script, that returns all SPs to a given table, incl. the access type

    Sean Lange (4/9/2015)


    Thanks!!! Not sure why I pointed out a possible concern and stopped short of providing an alternative. Been a heck of a week around the office...thankfully the weekend...

  • RE: script, that returns all SPs to a given table, incl. the access type

    Sean Lange (4/9/2015)


    One caveat of Eirikur's excellent suggestion is that it will NOT find any references if your procedures contain dynamic sql.

    Good point, then we use the sys.all_sql_modules

    😎

    SELECT

    ...

  • RE: How to find the needle in the haystack

    tcronin 95651 (4/9/2015)


    I have baselines, just stunned to see this happen, I have been a dba for 20 years and 99% of the time this happens either blocking or someone...

  • RE: Raiserror syntax in 2008R2 Vs 2012

    rxm119528 (4/9/2015)


    Eric,

    the compatibility mode is set to SqlServer2008(100).

    Thanks

    RM.

    Seen almost the same before, the difference being the text qualifiers and the missing parameter delimiter. Guess you will have to query the...

  • RE: How to find the needle in the haystack

    tcronin 95651 (4/9/2015)


    no blocking that was the first thing I looked for. I had dropped an unused index the night before on a table that the stored proc that...

  • RE: Are the posted questions getting worse?

    Sean Lange (4/9/2015)


    Luis Cazares (4/9/2015)


    I finally found Dwain's secret.

    It won't display here. Says the image contains errors. :w00t:

    He he, not the thing I would think of in the context of...

  • RE: How to find the needle in the haystack

    Grant Fritchey (4/9/2015)


    tcronin 95651 (4/9/2015)


    May have found the needle, started going through the snapshots Idera DM saves, as I scrolled through I noticed there is one stored procedure with about...

  • RE: Today's Random Word!

    Ed Wagner (4/9/2015)


    Eirikur Eiriksson (4/9/2015)


    TomThomson (4/9/2015)


    Ed Wagner (4/9/2015)


    SQLRNNR (4/9/2015)


    @##$@&*&%#@

    WTF

    WOE

    TBA

    TLA (three-letter acronym)

    MAA (Mother of All Acronyms)

  • RE: script, that returns all SPs to a given table, incl. the access type

    maurer.martina (4/9/2015)


    hello,

    I am looking for a script, that returns all SPs, which related to a given table, incl. the access type.

    For example: the SPs SP_test1, SP_test2, SP_test3 are dependencies of...

  • RE: Raiserror syntax in 2008R2 Vs 2012

    rxm119528 (4/9/2015)


    Hi all,

    I am trying to understand the syntax change for Raiserror from 2008 to 2012

    SET ANSI_NULLS OFF

    GO

    SET QUOTED_IDENTIFIER OFF

    GO

    CREATE procedure [dbo].[Spr_RaiseError]

    as

    declare @Rcount...

  • RE: Today's Random Word!

    TomThomson (4/9/2015)


    Ed Wagner (4/9/2015)


    SQLRNNR (4/9/2015)


    @##$@&*&%#@

    WTF

    WOE

    TBA

  • RE: Specific Column Matching...with nulls

    Quick suggestion (if I got this right)

    😎

    select

    *

    from

    #vehicle v

    inner join #class c on v.classtype = c.classtype

    where

    v.vehiclemake = 'AUDI'

    and ( v.vehiclemodel = 'R8' OR v.vehiclemodel IS NULL);

    Results

    id ...

  • RE: Can we install SP2 on SQL Server 2012 EVALUATION edition ?

    Joy Smith San (4/9/2015)


    Hi,

    Can we install SP2 on SQL Server 2012 EVALUATION edition ?

    Is there any such restriction for evaluation edition ?. Thanks in advance.

    San.

    There should be no problem installing...

  • RE: BackupSceario

    Sree Divya (4/8/2015)


    Hi,

    can anyone suggest how to take backup

    my scenario is sunday 8pm full backup,daily 8 pm diff backup,for every 1 hr transaction log backup.

    one developer wants the data upto...

  • RE: Help with arithmetic formula to "stuff" digits

    Eirikur Eiriksson (4/6/2015)


    Luis Cazares (4/6/2015)


    I'm not sure if this can be done. I'm not sure if it's the lack of coffee in my body or something else, but I'd like...

Viewing 15 posts - 5,686 through 5,700 (of 8,753 total)