Viewing 15 posts - 42,721 through 42,735 (of 49,571 total)
You've got database corruption.
Please run the following and post the results.
DBCC CHECKDB (< Database Name > ) WITH NO_INFOMSGS, ALL_ERRORMSGS
Do you have a backup? Do you have any idea when...
December 2, 2008 at 1:34 am
hemanth.damecharla (12/2/2008)
Sample_Error_String:
Please post the entire output (or save to a text file and attach it)
There may be stuff that you cut out that you think isn't important, but is.
Hold off...
December 2, 2008 at 1:27 am
Active/Active implies that there will be a second SQL instance on the second node that has its own databases. Is that what you're planning?
Clustering isn't a performance enhancement. Active/Active doesn't...
December 2, 2008 at 1:21 am
See its contents?
Sure.
SELECT * FROM fn_dblog(null, null)
It's not exactly what I'd call human readable though.
December 2, 2008 at 1:18 am
hemanth.damecharla (12/1/2008)
And, I should have mentioned this earlier; the corruption happened while doing a database shrink.
Not overly likely. More likely the shrink picked up corruption that was already there.
When...
December 2, 2008 at 1:16 am
What's the max size required by your tran log through the day?
How often are the log backups?
December 2, 2008 at 12:55 am
rnunez (12/1/2008)
Heres all the information from Help..aboutMicrosoft SQL Server Management Studio9.00.1399.00
That's RTM. You've got 2005 SP2 on the server and 2005 RTM on the client. I would suggest you run...
December 1, 2008 at 1:56 pm
Duplicate post. No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic611653-338-1.aspx
December 1, 2008 at 1:49 pm
When you can, run a full checkDB with no_infomsgs, all_errormsgs and see if it gives any errors back.
What build/patch level for 2005?
Do you have page checksums on for that DB?
If...
December 1, 2008 at 1:41 pm
Steve Jones - Editor (12/1/2008)
I'd go look at what's offered by SQL Skills, Solid Quality mentors, Scalability Experts and see if something fits.
Agreed. Where in the world are you...
December 1, 2008 at 1:35 pm
Chris Morris (12/1/2008)
Where not exists (Select 1
instead of Where not exists (Select *
in Query...
December 1, 2008 at 1:19 pm
If you click help - about in management studio, it'll show you the version of the client tools. What version do you have for management studio?
December 1, 2008 at 1:03 pm
As part of the create snapshot, you need to specify all data files, not just one of them
So, it'll be something like this
CREATE DATABASE AdventureWorks_snap042007 ON
(NAME = AdventureWorks_Data, FILENAME...
December 1, 2008 at 9:33 am
In this case (and I tested out in adventureworks) the exists is better because by using that you're telling SQL that it doesn't actually need to get the rows from...
December 1, 2008 at 9:26 am
Viewing 15 posts - 42,721 through 42,735 (of 49,571 total)