Viewing 15 posts - 1 through 15 (of 60 total)
if copy the statement in restorelog job to a query window and execute you may get detailed information.
September 21, 2012 at 1:45 am
if you declare your cursor as insensitive then you wouldnt get this error.
September 21, 2012 at 1:33 am
we have same issue, it happens sometimes because the disk which snapshot files resides becomes full. there are case that we have plenty of space again it is marked suspect....
May 17, 2012 at 12:31 am
hi,
-move your logins to newly installed cluster sql server database.( better to get the login scripts and run after moving db(s))
-convert your dts's to ssis and deploy them to cluster...
March 9, 2012 at 6:15 am
if your log backups are not compressed then it would be ok. but if you are using compressed backups then you should use compressed_backup_size field.
December 28, 2011 at 12:20 am
we had the same error messages while querying table having computed columns but after collecting statistics and update usage no more errors appear in the log.
June 28, 2011 at 3:17 am
stats seems to be stale. auto stats wasnot ON for that table. gathering index solved our case. thank you
June 23, 2011 at 8:56 am
it is a single query from a third party application.for different dates a can see the full query and completes in 5 secs.
June 23, 2011 at 7:57 am
we are using a view joing all user database sysobjects. it may be a start.
June 17, 2011 at 2:56 am
restore database Db_name from disk ='path' with norecovery
go
restore log db_name from disk='path\log1' with norecovery;
go
restore log db_name from disk='path\lastlog' with recovery ,stopat='timestamp';
go
June 15, 2011 at 3:20 am
in this case SQL server works just like Oracle, restore Full backup and then TRN log until the point where you dropped the table ( using stopat=timestamp)
June 15, 2011 at 3:03 am
GilaMonster is right you have to wait till it completes.
June 14, 2011 at 8:09 am
Check if firewall is OFF in both servers. IF your OS is Windows 2008 it comes with firewall ON
June 14, 2011 at 7:49 am
you can also check application eventviewer logs.
June 14, 2011 at 7:44 am
As far as I know mirroring configuration must be done with hostnames. add those IPs to host file and use their hostnames.
June 14, 2011 at 7:38 am
Viewing 15 posts - 1 through 15 (of 60 total)