Viewing 15 posts - 61 through 75 (of 1,364 total)
Run dbcc showcontig for that table and check the fragmentation.
May 13, 2010 at 1:51 pm
May 12, 2010 at 8:30 am
Check the File type of files residing under that location.
It must be 'BAK File'.
May 11, 2010 at 2:52 pm
Try N'*.*' instead of 'BAK' if there are no other files than backup files in that folder.
May 11, 2010 at 2:27 pm
Try N'.BAK' instead of N'BAK'.
May 11, 2010 at 2:10 pm
May 11, 2010 at 1:29 pm
You won't be able to see it until that statement is executed.
May 10, 2010 at 1:52 pm
Ask them to add your login to msdb database 'sqlagentuserrole' .
To add a user as a member of the 'sqlagentuserrole' , you can execute the following command:
use msdb
EXECUTE sp_addrolemember@rolename =...
May 10, 2010 at 1:15 pm
B'coz your login doesn't have permissions.
http://www.sqlservercentral.com/Forums/Topic536293-146-1.aspx#bm912541
Whats the edition of sql server?
May 10, 2010 at 12:13 pm
Specify 'EXCEL_AUTHORS' in openquery instead of EXCEL_AUTHOR.
May 8, 2010 at 2:07 pm
First create the indexes as advised (allow around 10 minutes to complete):
CREATE
INDEX [media_set_id] ON [dbo].[backupset] ([media_set_id])
CREATE
INDEX [restore_history_id] ON [dbo].[restorefile] ([restore_history_id])
CREATE
INDEX [restore_history_id]...
May 7, 2010 at 11:04 am
tony.turner (5/7/2010)
The advantage of the above...
May 7, 2010 at 9:01 am
Are you able to run this from partner server?
ALTER DATABASE [LancelotMirrorTest] SET PARTNER = N'TCP://Server1.domain:5022';
Anything in the errorlog any service broker messages in the errorlog
Make sure the service accounts...
May 7, 2010 at 2:43 am
Partial restore just provides a mechanism to restore part of the database to another location so that the damaged or missing data can be copied back to the original database....
May 7, 2010 at 2:27 am
Viewing 15 posts - 61 through 75 (of 1,364 total)