Viewing 15 posts - 1,456 through 1,470 (of 1,535 total)
So I should probably create the indexes and have a job go out once a week or so and confirm that they are still there?
My main concern is to place some...
March 5, 2004 at 12:14 pm
Have you tried using enterprise manager (while connected to that database) and gone to tools-->replication-->configure and confirmed that the database is definately not set for replication?
March 5, 2004 at 12:13 pm
if you run select * from sysarticles in that database do you get any rows?
March 5, 2004 at 11:49 am
sp_configure 'allow_updates',0
reconfigure with override
update sysobjects set replinfo = 0 where name = 'billable_transactions'
sp_configure 'allow_updates',1
reconfigure with override
March 5, 2004 at 8:44 am
you actually just needed to remove replication for that table but...
you ran...
exec sp_dropsubscription @publication = '<publication>, @article = N'all', @subscriber = N'<subscriber server>', @destination_db =...
March 5, 2004 at 8:21 am
'fraid so...the best way is to script everything out to drop and create the replication, as well as the alter table alter column statement and run it. Once the script...
March 5, 2004 at 7:35 am
If your column has no data in it then you could drop it and add it again, otherwise you'll have to resnapshot.
March 5, 2004 at 7:28 am
You are probably attempting to backup the database to a dump device when this error occurs. Look in enterprise manager under Management-->Backup you will see a list of devices, this...
March 5, 2004 at 6:10 am
Having terminal services for remote administration is fine, that gives you a limit of 2 remote users. The performance problem is only really going to be a factor if you...
March 4, 2004 at 12:56 pm
Are you running on different hardware than the original box? There could be an issue with controllers and the machine getting confused as to what disk is on what controller....
March 4, 2004 at 12:06 pm
Did you start SQL in single user mode before attempting to restore msdb.
March 4, 2004 at 11:16 am
I would never install software over terminal services, however using it I have never experienced a problem. That includes all the usual SQL functionality like designing, executing DTS, managing server...
March 4, 2004 at 9:56 am
Check the registry for
Hkey_Local_Machine-->Software-->Microsoft-->MSSQLServer-->Setup and confirm the SQLDataRoot path and the SQLPath path.
Also check
Hkey_Local_Machine-->Software-->Microsoft-->Microsoft SQL Server-->80 and check the SharedCode key.
March 4, 2004 at 8:52 am
Here's the link... http://www.sqlteam.com/item.asp?ItemID=6002
March 4, 2004 at 7:38 am
Enterprise manager --> right click SA, go to properties, type the new password in the password box, hit ok, type the new pwd again.
March 4, 2004 at 7:31 am
Viewing 15 posts - 1,456 through 1,470 (of 1,535 total)