Viewing 15 posts - 5,491 through 5,505 (of 49,571 total)
SQLBill (6/25/2015)
GilaMonster (6/25/2015)
I found a photo of my Siamese.*sniff*
Okay, so how many looked at the cat and then looked at the books and thought "I have that one, don't have...
June 25, 2015 at 9:05 am
Grant Fritchey (6/25/2015)
Plus spitting and cursing at all the George RR Martin books. I've grown to really dislike that author.
I took all of my Game of Thrones books down to...
June 25, 2015 at 9:03 am
What's the issue?
You've described a scenario, but haven't said what exactly is wrong.
Also, have you either scheduled log backups or put the DB into simple recovery (depending on recovery...
June 25, 2015 at 8:23 am
When I was still blogging, it was very rare that something I wrote was related in any way to what I was working on. More often they were inspired by...
June 25, 2015 at 7:25 am
I'm going to disagree with you there.
Large transaction log will not result in lots of log backups.
Lots of VLFs won't result in lots of log backups.
You get log backups when...
June 25, 2015 at 5:47 am
I found a photo of my Siamese.
*sniff*
June 25, 2015 at 5:42 am
No.
Availability groups requires full recovery model. In full recovery model, the transaction log is only marked reusable when a log backup runs.
June 25, 2015 at 5:36 am
Couple things jump out.
Nolock hints, do you know what they do? (hint, they don't make queries faster)
Scalar UDFs are notorious performance problems. Consider converting this to an in-line table function...
June 25, 2015 at 4:00 am
Probably Querying.
The Window functions book is excellent, but has a very narrow scope and is reasonably advanced.
June 25, 2015 at 3:08 am
Please run the following and post the full and unedited output. Not all corruptions are repairable.
DBCC CheckDB ('<Database name>') WITH NO_INFOMSGS, ALL_ERRORMSGS
Also can you run:
SELECT name, df.state_desc, df.is_read_only FROM sys.database_files...
June 25, 2015 at 2:57 am
Because the first time you run a query the data has to be loaded from disk. Disk is slow. After that first execution, SQL Server can read the pages from...
June 24, 2015 at 8:04 am
Disks are slow, memory is fast. Therefore when SQL reads a page off disk it puts it into the data cache so that if it needs to read it again,...
June 24, 2015 at 7:45 am
Loading data from disk into the data cache
Compiling the query the first time and placing the plan into the plan cache
The first is usually a far larger impact than the...
June 24, 2015 at 7:24 am
Lowell (6/24/2015)
what is the significance of the spiderwebs pointing to [Exchange Event]? what is an exchange event in a deadlock graph?
A parallelism operation.
That's also why there are so many empty...
June 24, 2015 at 7:19 am
It just means that someone was trying to connect while SQL was still starting up. It's not an error.
June 24, 2015 at 5:42 am
Viewing 15 posts - 5,491 through 5,505 (of 49,571 total)