Viewing 15 posts - 2,941 through 2,955 (of 6,038 total)
GilaMonster (1/22/2016)
Eric M Russell (1/22/2016)
A dirty page is simply a page that been written to during an active (ie: uncommitted) transaction.
Or a committed transaction. It's a page that has been...
January 22, 2016 at 7:43 pm
Ed Wagner (1/22/2016)
mjh 45389 (1/22/2016)
January 22, 2016 at 12:22 pm
A dirty page is simply a page that been written to during an active (ie: uncommitted) transaction. Normally (when default READ COMMITTED is in effect) readers will attempt to take...
January 22, 2016 at 11:47 am
Gary Varga (1/22/2016)
Eric M Russell (1/22/2016)
Gary Varga (1/22/2016)
Eric M Russell (12/22/2015)
January 22, 2016 at 10:23 am
There are a lot of IT departments who get some extra funding in their budget and then try to fill slots with warm bodies in an extremely short timeframe. Maybe...
January 22, 2016 at 9:36 am
As the DBA, you may not be able to stop developers from not following design rules in development, but you at least should stand between development and production. You do...
January 22, 2016 at 9:13 am
Gary Varga (1/22/2016)
Eric M Russell (12/22/2015)
Remotely hacking another driver's Bluetooth component system is a way cooler and less violent way to express road rage than pulling out a handgun. 🙂
Way...
January 22, 2016 at 8:58 am
David.Poole (1/21/2016)
...I found the M$ interpretation varied depending on how close the licencing staff were to their annual bonus
Yes, as with any major purchase like automobiles or realestate, it may...
January 22, 2016 at 7:16 am
Most languages, particularly scripting languages like JavaScript and PHP (ie: Eval function), support dynamic execution. It's just more problematic with SQL because it's a language that enables retreival and modification...
January 22, 2016 at 7:08 am
sql-lover (1/21/2016)
Eric M Russell (1/21/2016)
sql-lover (1/21/2016)
Eric M Russell (1/21/2016)
January 21, 2016 at 2:02 pm
sql-lover (1/21/2016)
Eric M Russell (1/21/2016)
January 21, 2016 at 12:36 pm
The DMV dm_exec_procedure_stats returns one row for each cached stored procedure plan. There can be multiple cached plans for a single procedure (database_id, object_id). The column 'plan_handle' is the plan...
January 21, 2016 at 11:51 am
Rows are not guaranteed to return in any specific order unless you specify an ORDER BY clause. Please provide the DDL for the table so we have a better picture...
January 21, 2016 at 11:44 am
Changing the clustered key from a ramdom GUID to a sequenial integer will help prevent page splits, so that that helps reduce I/O and blocking during inserts. It appears that...
January 21, 2016 at 11:08 am
Wayne West (1/21/2016)
Eric M Russell (1/21/2016)
... With connection pooling, the number of SPIDs won't measure the total number of "users" or "seats", but counting concurrent SPIDs can be used to...
January 21, 2016 at 10:16 am
Viewing 15 posts - 2,941 through 2,955 (of 6,038 total)