Viewing 15 posts - 16 through 30 (of 46 total)
if there is still something to drop, even if not 'visible',
running sp_removedbreplication on both the publisher and subscriber
should clean.
Else I don't have any suggestion more...
May 12, 2010 at 5:44 am
the thing I would try is to drop the subscriptions and stop all agents of distribution. or better, drop the whole replication. Time ago I had a similar problem and...
May 12, 2010 at 5:18 am
if the replication is merge or transactional, you will have to stop the agents.
Have you tried dropping the database using the script:
Alter DATABASE yourdb SET OFFLINE
DROP Database yourdb
sb
May 12, 2010 at 5:06 am
I've just found this script in the 'Scripts' section, it can be very useful!
SELECTt.name as [DB Name],
t.user_access_desc as [Access State],
t.state_desc as [Online/Offline],
((SELECT (CASE t.is_in_standby WHEN 0 THEN 'No' WHEN 1...
May 12, 2010 at 3:10 am
running the query
SELECT database_name, MAX(backup_finish_date) backup_date
FROM msdb.dbo.backupset
GROUP BY database_name
you can get the most recent backup date of the databases, you can rerun the script for those with backup date older...
May 12, 2010 at 2:57 am
Perfect, thanks, it worked using
backup log database_name with truncate_only
go
DBCC SHRINKDATABASE (database_name, 10, TRUNCATEONLY)
go
alter database database_name
remove file logicalfilename
February 16, 2010 at 7:02 am
This is what I thought, but I wasn't sure.
Many thanks, sb
January 22, 2010 at 2:08 am
I have a problem in adding a linked server from sql 2005x64 to oracle.
I have created the linked server
EXEC sp_addlinkedserver
@server = 'job',
@srvproduct...
October 29, 2009 at 6:45 am
Many, many thanks for your accurate reply!
sb
October 20, 2009 at 4:23 am
Our cluster is active-active, so in the same time there are system database running on separate instances.
The reason for datatyped in model is that the application creates temporary tables containing...
October 20, 2009 at 3:58 am
Hello,
I had the same problem, msg 8992. Some views and stored procedures of a database were trying to reference to a no more existing field of a table. After finding...
May 4, 2009 at 6:31 am
half knowledge and half luck...
he knew that there is an index in sysfiles1,
sp_spaceused 'sys.sysfiles1' told that index_size=0, it means it had not been possible to allocate...
February 17, 2009 at 6:06 am
After a few tryes, our consulent has solved the problem: the first datafile, which run out of space, contains the data of sysfiles1 and there were problems in adding its...
February 17, 2009 at 4:53 am
Thanks for your new ideas, I've tried to backup model's transaction logs, but I still get the same error.
I've tried also dump transaction with no_log with no success.
Checkdb found 0...
February 17, 2009 at 3:58 am
Viewing 15 posts - 16 through 30 (of 46 total)