Viewing 15 posts - 16 through 30 (of 161 total)
Using any third party tools like Quest Litespeed? Any CLR code or Integration services on this server? These are some of the things that can cause PLE drops.
October 6, 2013 at 12:49 am
Try checking out "MSSQL$InstanceName:Buffer Manager", "MSSQL$InstanceName:Memory Manager" and "Memory" perfmon counters. This would be a good place to start. Make sure you capture over a good period...
October 6, 2013 at 12:47 am
I've seen this when my service account loses it's "Log on as service" rights.
Might be something to check - could temporarily change the Agent service to use Local System account...
October 4, 2013 at 7:55 am
IgorMi (10/4/2013)
PLE min values should not go under 300 seconds. Fluctuating from 14h to 0.1h is still above 300 seconds, but the behavior itslef is not good for the database...
October 4, 2013 at 3:27 am
Could also be in an agent job...
We see this behaviour when our Litespeed backups kick off during our maintenance window
October 4, 2013 at 2:37 am
Hi,
I had to set this up a few weeks ago (SQL2008R2 to Oracle 11g Subscriber).
Some tips:
- You will need to install the oracle client tools on the distributor and...
October 4, 2013 at 2:29 am
Luis Cazares (9/30/2013)
Here you go
haha - wondered if something like this was available 🙂
September 30, 2013 at 2:15 pm
+1 to what Koen said.
I only explain logic and why I've done it a specific way.
I think it's safe to assume a basic understanding of sql - especially...
September 26, 2013 at 2:03 am
samking (9/18/2013)
Can any one know where to find port id in sql server.I am new to sql server dba ...please help.
Thanks & Regards
shiva
The following query will return the instance and...
September 23, 2013 at 1:51 am
If you suspect a poorly performing query you could check the execution plan to see what the cardinality estimates are too. If there is skew (estimated 1, actual thousands...
September 17, 2013 at 5:24 am
this is what I came up with from your existing structure (after making the insert statements work)
WITH cte
AS
(
SELECTc
,ROW_NUMBER() OVER(ORDER BY c) AS rowid
FROM table1
),
cte2
AS
(
SELECT c
,ROW_NUMBER() OVER(ORDER BY c) AS rowid
FROM...
September 12, 2013 at 2:22 am
1 password per instance. We personally have a stored procedure which creates secure passwords up to 15 characters long with varied case / numbers / symbols (excluding certain symbols)....
September 11, 2013 at 8:11 am
FIXED:
My sp_addarticle command was missing the @status parameter (with a value of 0).
I don't fully understand why a value of zero made this work though as BOL state...
September 9, 2013 at 7:32 am
have you checked C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20130125_105747\Detail.txt for the details?
September 4, 2013 at 12:59 pm
Shrinking dbs are never a nice task for many reasons - if you absolutely have to do it remember to run your reindexing/update stats afterwards....
September 3, 2013 at 6:20 am
Viewing 15 posts - 16 through 30 (of 161 total)