Forum Replies Created

Viewing 15 posts - 46 through 60 (of 582 total)

  • RE: cumulative average without cursor

    TheSQLGuru (7/29/2015)


    I am on the last day of a cruise vacation and pretty much brain-dead, but I think this does the trick, although I am not certain you want to...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: cumulative average without cursor

    Jason A. Long (7/29/2015)


    Based on the stated requirements... I think this is what you're looking for...

    IF OBJECT_ID('tempdb..#temp') IS NOT NULL

    DROP TABLE #temp;

    CREATE TABLE #temp([term] int,

    ...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: cumulative average without cursor

    Have you tried LAG? This is just a minor twist on a typical running total which is easily solved with LAG. That of course is assuming you are on 2012.

    My...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Invalid product key

    I could understand why the BI key would not work, the EVAL edition is essentially enterprise which is a higher version of sql server. Developer is at the same level...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: slowness of queries

    There isn't any specific wait type(s) to look for when you have slow queries. When you have a slow query, check what it is waiting on and proceed from there.

    You...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: New Environment Build

    SQLAssAS (7/21/2015)


    If you have an active and passive node, only the active node needs to be licensed for SQL as only one node will be used at a time.

    This is...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: New Environment Build

    without having the second blade licensed for SQL server, you will not be able to use it for SQL Server. Additionally if you do not have Software assurance, i don't...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Does database server location impact performance

    even something as simple a ping will give you some indication of latency differences.

    on the east coast app server ping the east coast DB server, then ping the west...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Worried about disk space on rebuild

    when rebuilding indexes, a new index is created then switched out with the existing index, which is then dropped. your space should only increase as much as your largest index....

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Opening 1433 port for SQL Server cluster

    if you limit your access on a per client basis (ie server1 connect to dbserver on port 1433, instead of everybody to dbserver on port 1433) then, if you have...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: restore is failing

    Is the correct version of litespeed installed on the server where you are doing the restore?

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Indexing Dates

    you are not very clear in what your requirements are? you want to determine the lag values in reference to what?

    read the post at the link in my signature on...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Growth Rate Problem

    Do you rebuild your indexes over the weekend? Is there a lot of empty space in your datafile?

    When you rebuild indexes, a new index structure is created effective doubling...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: Removing SQL Service Accounts from Local Admin group - File permission changes needed

    This should be what you are looking for. https://msdn.microsoft.com/en-us/library/ms143504(v=sql.130).aspx

    I didn't think it would matter what group the service account was in because the installation assigns the appropriate permissions. Has there...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

  • RE: How Much Memory for New SQL Server 2014 Server

    Markus (6/4/2015)


    The more memory the better. However, it is a 'it depends'. If you have one very small database planned for this SQL Server 96gig of memory is WAY...

    Bob
    -----------------------------------------------------------------------------
    How to post to get the best help[/url]

Viewing 15 posts - 46 through 60 (of 582 total)