Viewing 15 posts - 8,956 through 8,970 (of 39,804 total)
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...
November 29, 2015 at 8:49 pm
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...
November 29, 2015 at 8:02 pm
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...
November 29, 2015 at 8:00 pm
Congrats, and glad you made such a big change and meet your challenge
November 26, 2015 at 8:25 am
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...
November 25, 2015 at 3:31 pm
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....
November 25, 2015 at 3:07 pm
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...
November 25, 2015 at 3:04 pm
I'd also ask people in the company. It's possible someone runs SSIS or performs manual imports from their workstation.
November 25, 2015 at 3:01 pm
Alvin Ramard (11/25/2015)
Steve Jones - SSC Editor (11/25/2015)
November 25, 2015 at 2:59 pm
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...
November 25, 2015 at 2:57 pm
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....
November 25, 2015 at 12:33 pm
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...
November 25, 2015 at 12:04 pm
Thanks for noting that I mirror Keith poorly. :hehe:
November 25, 2015 at 8:48 am
DonlSimpson (11/24/2015)
November 24, 2015 at 1:55 pm
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
...
November 24, 2015 at 8:57 am
Viewing 15 posts - 8,956 through 8,970 (of 39,804 total)