Viewing 15 posts - 31 through 45 (of 107 total)
thank you for the reply, I think for now this solution will work.
Thanks.
July 26, 2013 at 1:33 pm
I'm not sure if there's a problem, I have not seen this query before and I was inquiring information about it. I see now that updating statistics generates these...
July 26, 2013 at 1:32 pm
This is all that the sql monitor tool throws out to the log:
SELECT StatMan([SC0])
FROM
(
SELECT TOP 100 PERCENT [AT_field_3] AS [SC0]
FROM [dbo].[tablename]
WITH
(
READUNCOMMITTED
)
ORDER...
July 26, 2013 at 1:15 pm
I have a job running statistics, that's generating it?
use [DatabaseName]
GO
UPDATE STATISTICS [dbo].[tablename]
WITH FULLSCAN
GO
Do you know why is selecting some tables and not others?
July 26, 2013 at 12:41 pm
Well, a new day and new outcomes. After struggling with this problem for a half a day yesterday, this is what I did this morning.
1) Added a new dummy...
July 2, 2013 at 8:32 am
I dropped userB from the database and I tried changing the owner of the databases by going through the database properties and changing the dbo user that way under the...
July 1, 2013 at 6:52 pm
I'm looking through all my logs and going back further.
I did a quick test on my personal machine that run sql server. I ran a backup of the database...
July 1, 2013 at 10:48 am
I ran a DBCC CHECKALLOC(database) and DBBC CHECKCATALOG(database), both commands ran without any errors.
It has been a couple of backup since we started getting this error, if we restore one...
July 1, 2013 at 9:53 am
Thank you for the suggestion, I tried and it works pretty good.
Pretty clever.
June 27, 2013 at 1:35 pm
It's a combination of different servers, production, test and dev. I'm new to this job and I'm learning what to expect from this systems but I know that at...
June 19, 2013 at 3:48 pm
Ok, that sounds good. Putting in my own words to make sure I'm understanding, if my servers have a high PLE it's ok because their memory space is not...
June 18, 2013 at 7:48 am
I agree completely, we should have not excuses to "forget" backing up a database. I have to admit, I have done that exact same thing in the past and...
June 17, 2013 at 8:07 am
---What are the contents of your maintenance plan? Does it rebuild indexes base on a fragmentation threshold.
I'm using the default setting for the rebuild index task which generates the...
June 13, 2013 at 3:53 pm
The job ran successfully. Thank you.
June 13, 2013 at 12:14 pm
do I need to run this script after hours to prevent getting in the way of users?
June 12, 2013 at 10:47 am
Viewing 15 posts - 31 through 45 (of 107 total)