Forum Replies Created

Viewing 15 posts - 4,366 through 4,380 (of 6,038 total)

  • RE: Continuous Delivery for Windows?

    If you want no-fuss upgrades to the latest service pack and bug fixes, then perhaps SQL Azure is the way to go.

  • RE: tempdb log 75GB

    -- query allocated temp tables with record count and size.

    use tempdb;

    select o.type_desc

    , substring(o.name,1,charindex('__',o.name)+1)+right(o.name,12) table_shortname

    , si.name index_name

    , case si.index_id when 0 then 'HEAP' when 1 then 'CLUSTERED' else 'NONCLUSTERED' end index_type

    ,...

  • RE: Continuous Delivery for Windows?

    We've already seen SQL Server move to a pace that releases new versions every two years and bimonthly patches to fix issues. Imagine that we could get patches even more...

  • RE: Help avoiding temp table with string of IDs passed into stored procedure

    TheSQLGuru (10/7/2014)


    Try your XML method under stress and see how it holds up. Or with lots of rows.

    There are some very nice threads here on SSC.com about...

  • RE: Why do they not listen?

    😉

    Evil Kraig F (10/7/2014)


    djj (10/7/2014)


    Finally someone listened. We had a meeting today and we are looking to revamp the entire phone number storage.

    Not because I suggested it, but a...

  • RE: Help avoiding temp table with string of IDs passed into stored procedure

    The following approach assumes the same list of IDs as a comma seperated set. It does not involve a temp table or dynamic sql, and should keep a fixed execution...

  • RE: The Next Five Years

    I've got the genious DNA... right here! :kiss:

  • RE: The Next Five Years

    Luis Cazares (10/7/2014)


    Eric M Russell (10/7/2014)


    Yes, a genious should be able to create their own job, but a high IQ doesn't guarantee that the person is also a self-starter; it...

  • RE: Linked server & Remote login Password

    ramana3327 (10/7/2014)


    Hi,

    Is there any way to find out the password for the remote login of the Linked server

    The system table sys.sql_logins contains a column called [password_hash] and sys.sysoledbusers contains a...

  • RE: The Next Five Years

    Gary Varga (10/7/2014)


    Eric M Russell (10/7/2014)


    Luis Cazares (10/6/2014)


    Miles Neale (10/6/2014)


    There will be no need for school. We will alter the DNA prebirth so that no one is born without the...

  • RE: The Next Five Years

    Luis Cazares (10/6/2014)


    Miles Neale (10/6/2014)


    There will be no need for school. We will alter the DNA prebirth so that no one is born without the initial abilities of Albert E....

  • RE: Same Query, Different Server, Different Plan

    Do they have the exact same SQL Server version and service pack level?

  • RE: How do you approach undocumented code?

    sqldriver (10/6/2014)


    Eric M Russell (10/6/2014)


    sqldriver (10/6/2014)


    At what point do you decide to throw it in and start over from scratch? This thing uses 38 tables, countless temp tables, 47 stored...

  • RE: How do you approach undocumented code?

    sqldriver (10/6/2014)


    At what point do you decide to throw it in and start over from scratch? This thing uses 38 tables, countless temp tables, 47 stored procs of varying length,...

  • RE: How do you approach undocumented code?

    sqldriver (10/6/2014)


    If you're tasked with debugging/troubleshooting?

    Specifically:

    Assigning workable values to parameters/finding out where they're passed from or stored

    Heavy use of temp tables/table variables/real tables that get truncated

    Verifying results

    Bonus points if it's...

Viewing 15 posts - 4,366 through 4,380 (of 6,038 total)