Viewing 15 posts - 2,716 through 2,730 (of 7,168 total)
PS Did you ever figure out why the database went to Suspect? Was there anything of interest in the SQL Server Error Log?
December 11, 2012 at 4:35 pm
yi.hua72 (12/10/2012)
Our environment uses log shipping between two long distance geographical locations. One day on June(another on...
December 11, 2012 at 4:24 pm
Hemant.R (12/10/2012)
whenever you restore any database ,that activity related info got stored in
restorehistory table of msdb
plz check with using this
select destination_database_name,USER_NAME,restore_date from restorehistory order by restore_date desc
if...
December 11, 2012 at 10:05 am
Steve Jones - SSC Editor (12/10/2012)
Is this just IE or have you tried...
December 11, 2012 at 9:57 am
nice follow-through! thanks for posting back
December 7, 2012 at 10:09 am
It would be neat (at least to me) if after you pulled together your decision points and settled into a convention you posted those to this thread. I think it...
December 7, 2012 at 10:07 am
I think the point is, is there an easy way to setup 25 databases for log shipping without hitting the wizard 25 times.
My answer would be sure, anything can be...
December 6, 2012 at 5:43 pm
use of schemas as containers for grouping and securing like objects
December 6, 2012 at 5:38 pm
What you are trying to do in effect is modify the system tables underneath the sys.database_principals catalog view which is disallowed when the database is read-only. Instead you'll need to...
December 5, 2012 at 11:58 pm
It is likely related to collation. For ANSI data types (VARCHAR, CHAR and TEXT) SQL Server will replace any characters in the data not present in the codepage (per the...
December 5, 2012 at 11:49 pm
It is not uncommon at all. Basically what you want is to initialize the subscriber using a backup from the publisher. When you setup the publication you'll let SQL Server...
December 5, 2012 at 11:24 pm
Since you're on SQL 2000 you do not have the option of doing page restores. As Gail outlined, you can restore from backup that do not include the corruption (including...
December 5, 2012 at 11:13 pm
Are you sure the TL backup completed successfully?
It should not matter the name of the file, or even that it has an extension. SQL Server will still read it as...
December 5, 2012 at 10:58 pm
Not that I know of. Not unless you had a trace running that would show that information or there was a trigger on the msdb.dbo.sysjobs table that recorded who made...
December 5, 2012 at 10:55 pm
Viewing 15 posts - 2,716 through 2,730 (of 7,168 total)