Forum Replies Created

Viewing 15 posts - 8,956 through 8,970 (of 39,804 total)

  • RE: SQL memory is very high

    You said it was capped at 41GB. It will always grow to 41GB as you use the server.

    No concern, no curiosity. This is how SQL Server works. Every query reads...

  • RE: SQL memory is very high

    Are you saying that 41GB is high? If you set the max to 41GB, the SQL Server instance will use 41GB. All the RAM that isn't needed for queries is...

  • RE: RAM to each Instance

    Agree with above. If you have a 2 node cluster then if there is a failover, you will be sharing 64GB among three instances. If you don't set max/min for...

  • RE: This is why SQL Server Central Forums rock!

    Congrats, and glad you made such a big change and meet your challenge

  • RE: Getting Alert if job is running unusual

    You need to build two things.

    1. How do I examine the data and determine if the current execution is long. Meaning, am I looking at the mode, the average, weighted...

  • RE: Getting t-1

    Often people use a dateadd/datediff combination to remove times, or to set to a base time.

    SELECT DateAdd(Day, Datediff(Day,0, GetDate() -1), 0)

    returns midnight of yesterday. That might be what you want....

  • RE: writing queries that easily readable

    The way in which queries are formatted is very subjective. Some people like this:

    select col1, col2, col3

    from mytable

    inner join myothertable on col1 = myfk

    where time < getdate()

    others prefer more indentation.

    select...

  • RE: How can I find the source of data for a DB

    I'd also ask people in the company. It's possible someone runs SSIS or performs manual imports from their workstation.

  • RE: Are the posted questions getting worse?

    Alvin Ramard (11/25/2015)


    Steve Jones - SSC Editor (11/25/2015)


    The spam problem is tough. Believe me, no matter what we do, people will find ways around it. Much of the spam isn't...

  • RE: Getting Alert if job is running unusual

    You could track the times in sys.jobactivity. You would need to create an average, or max, or whatever statistical calculation you want. Then you'd need to track the current execution...

  • RE: Are the posted questions getting worse?

    The spam problem is tough. Believe me, no matter what we do, people will find ways around it. Much of the spam isn't a user clicking and posting like you....

  • RE: Is my Database corrupted ? Any solutions on fixing this ? Help

    I know this is old, but did you recover things?

    Also, please don't set emergency or use repair allow data loss. You have errors in low numbered system objects, which are...

  • RE: Fantasy Football 2015

    Thanks for noting that I mirror Keith poorly. :hehe:

  • RE: The dotted table

    DonlSimpson (11/24/2015)


    Yeah but isn't that using a butter knife as a screwdriver? Certainly you can, and many people and organizations do, use the database server as the staging area...

  • RE: Query help on previous record

    I was using window functions, and this appeared to work, but it's a small sample size, so perhaps there's a flaw here:

    SELECT t.*

    FROM ( SELECT top 10

    ...

Viewing 15 posts - 8,956 through 8,970 (of 39,804 total)