Viewing 14 posts - 16 through 29 (of 29 total)
you get only problems if you don't install them!
May 12, 2006 at 2:28 am
Hi Daya,
What kind of user account are you using to register the SQL server?
As it is a MSDE version of SQL maybe you need to have admin rights to register...
May 10, 2006 at 5:12 am
If you want to shrink them you can use dbcc shrinkdatabase or shrinkfile from QA.
It is a bit strange that you can not see the system databases in EM. What...
May 9, 2006 at 5:43 am
What are you using Enterprise manager or Query analyser?
regards,
Holger
May 9, 2006 at 4:53 am
Hi Chris,
What compatibility mode do you have on that database? Make sure to set it on mode 80.
regards,
Holger
May 9, 2006 at 4:30 am
It can also be that a restart of the SQL Server service solve the problem.
But it is always a good idea to try it on a test machine first. I've...
May 8, 2006 at 11:55 am
not if you stop the sql server service. Then just copy them over. But as I said before make a copy of the original ones before doing that.
After that you...
May 8, 2006 at 10:28 am
The fastest way is stop SQL server service and copy out the system db's and then stop the service on the new server and copy the files over the existing...
May 8, 2006 at 10:16 am
there is still the brutal force way of doing it:
sp_configure 'allow updates',1
go
reconfigure with override
go
use (your database)
delete from sysfilegroups where groupname ='(your filegroup)
go
sp_configure 'allow updates',0
go
reconfigure with override
go
but before doing that make...
May 8, 2006 at 10:11 am
Best thing is to create a specific user account and set the right permissions.
regards,
Holger
May 8, 2006 at 9:57 am
Hi Joel,
First think you need to check if you have still some open transactions and close them.
If the situation gets really critical consider to restart the SQL Server service, that...
May 8, 2006 at 9:54 am
Hi,
Has the startup account of SQL Server the right to write on the other server?
If you do this from Dos prompt you're using your user account and not the one...
May 8, 2006 at 8:19 am
Hi,
Sometimes I had the problem that indexdefrag and so one didn't had the disered result.
As the problem is only with a few tables why you don't consider to make...
May 8, 2006 at 5:04 am
Viewing 14 posts - 16 through 29 (of 29 total)