Viewing 15 posts - 736 through 750 (of 1,655 total)
Bur remember, you need to restart the sql server before the change is implemented.
September 10, 2008 at 12:58 am
The prblem is not that Administrator didn't have permissions on the file,
but that the Hotfix installation was started under an account which is not an administrator on the server.
September 9, 2008 at 4:32 am
Otto,
the replication you're dealing with is transactional replication. With transactional replication transaction are kept in the logfile until they are succesfully applied at the subscriber. For some reason in...
September 9, 2008 at 2:35 am
Sorry, but SQL 2000 doesn't have this functionality. Only options in 2000 would be running a trace or use a third party auditing.
September 8, 2008 at 7:59 am
I think you're looking for this:
EXEC master.dbo.sp_readerrorlog
September 8, 2008 at 7:39 am
You need to rebuild the master database in order to change the server collation.
September 8, 2008 at 4:10 am
Sorry, I forgot to exclude the system objects in my previous query. These are queried everytime you open Object Browser in SSMS it won't help you at all. So here's...
September 5, 2008 at 6:35 am
If it's just to check if a database is still actively used you can also use the sytem view sys.dm_db_index_usage_stats to track database activity.
This view has columns to track...
September 5, 2008 at 6:18 am
You need to attach the database either through SSMS or using the sp_attach_db stored procedure.
September 5, 2008 at 4:15 am
Disabling a Login will prevent the users to logon. Existing connections you need to Kill, just like it's done in the article about logon triggers.
September 4, 2008 at 6:21 am
The fact that you say that the maintenance plan only does things for certain databases makes it difficult to make it dynamic. But if you have some common way of...
September 4, 2008 at 2:49 am
LOGON_Triggers would be one way to go and you can find a good article about how to do it here[/url].
Another option would be creating a job which disables the login(s)...
September 4, 2008 at 2:33 am
Yes, SQL 2008 Express Edition does have support for Filestream data and as far as I know the 4 Gb limit does not apply to Filestream data.
September 4, 2008 at 1:19 am
Just like temp tables, table variables are physically stored in the tempdb. So the values returned by sys.fn_PhysLocFormatter should point to the file, page of the tempdb.
September 3, 2008 at 6:05 am
After the prerequisets get (.Net 3.5 and Windows Installer ) installed you need to reboot your system. After the reboot run the setup again and this time it should go...
September 3, 2008 at 4:41 am
Viewing 15 posts - 736 through 750 (of 1,655 total)