Viewing 15 posts - 44,161 through 44,175 (of 49,552 total)
It does look like someone (or several someones) is running a brute-force hack attempt against your serves. Can you speak to your network people, see if they can block ip...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 4:34 pm
They will affect any query that tries to use the corrupt pages. Update stats (unless used with fullscan) samples pages, so it may or may not be affected, depending which...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 3:25 pm
500kb of output even with no_infomsgs? Wow.
If the errors are in the base tables, and you have no clean backup, then your only option is to run checkDB with the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 2:45 pm
That could well be a hack attempt.
What's the previous line in the error log? (specifically the state?)
How strong is your sa password? If you're not using the account, can you...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 1:07 pm
As for the first, I don't think that's logged.
For the second, query the sysjobhistory table in msdb. The amount of history depends on the frequency of the job. I think...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 1:06 pm
john_izzy (9/28/2008)
how to make cursor in sql server 2005?
Why do you need a cursor? Unless you're doing certain types of admin tasks (which are often one object at a time)...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 1:04 pm
Raghavender (9/28/2008)
CHECKDB found 0 allocation errors and 85 consistency errors in database 'DBNAME'.
repair_allow_data_loss is the minimum repair level for the errors found by DBCC...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 12:55 pm
saby (9/26/2008)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 9:12 am
The other thing I will suggest is that you consider moving the clustered index to the date column or the ID column (mainly because it will fragment less)
and put...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 9:05 am
The first thing I will suggest is that you do an update stats with full scan on that table.
The execution plan shows that the optimiser is estimating 1 row and...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 8:55 am
If you're able to upload the permon stuff, please not as a screenshot. There's not enough info in a screen shot. Zip and upload whatever you saved (if possible)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 8:47 am
Where's the clustered index?
What are the primary keys?
Is that the only query that will be run on the tables?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 6:34 am
What's running on Node A?
The error indicates that there's not enough memory to bring SQL online, which indicated that something else is running and is consuming the memory.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 6:29 am
Have you limited the server's max memory? If not it would be a very good idea to do that. Set the max memory to around 29GB.
Also have a look at...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 6:24 am
Can you post the execution plan please (saved as a .sqlplan file, zipped and attached to your post)
Also, you say it's slow. What do you mean by slow? (5 sec,...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
September 28, 2008 at 6:09 am
Viewing 15 posts - 44,161 through 44,175 (of 49,552 total)