Viewing 15 posts - 2,356 through 2,370 (of 4,745 total)
Rajat Jaiswal-337252 (8/18/2010)
george sibbald (8/18/2010)
---------------------------------------------------------------------
August 19, 2010 at 3:55 am
no probs.
FILE =1 should not be necessary. If you are always backing up to the same backup file name ensure you use the init clause in the backup, otherwise it...
---------------------------------------------------------------------
August 19, 2010 at 3:48 am
It is as long as you also include the 'with replace' clause
---------------------------------------------------------------------
August 18, 2010 at 2:26 pm
could be the fill factor is too low or the clustered index is on a column with lots of inserts\updates and the values are random (nonconsecutive)
or the table could be...
---------------------------------------------------------------------
August 18, 2010 at 12:31 pm
its available because its something you might have to do if space is a problem. there is a command to drop a database also, doesn't mean you should as a...
---------------------------------------------------------------------
August 18, 2010 at 8:48 am
nope. you cannot go backwards in versions. you would have to do 'logical' restores on a object by object basis.
suggest you make your DR version the same as the live.
---------------------------------------------------------------------
August 18, 2010 at 6:46 am
the size of the backup will be equivalent to the space used within the database. But the database also contains information on the sizes of the files that make up...
---------------------------------------------------------------------
August 17, 2010 at 3:14 pm
oops.just seen this thread is 2 years old.................
---------------------------------------------------------------------
August 17, 2010 at 9:56 am
original code by rbarry young..................
SELECT SCHEMA_NAME(tbl.schema_id) as [Schema]
, tbl.Name
, Coalesce((Select pr.name
From sys.database_principals pr
...
---------------------------------------------------------------------
August 17, 2010 at 9:54 am
interesting stuff on sa but i thought the question was on the service account!
The OP seems to have backed out as well.
---------------------------------------------------------------------
August 17, 2010 at 9:05 am
Andrew, a google of that error suggests permission issues. Are the SQL services on the secondary running under a domain user account that has sufficient privileges on the primary server?
---------------------------------------------------------------------
August 16, 2010 at 4:02 pm
not through the GUI install. Its a bug.
---------------------------------------------------------------------
August 16, 2010 at 3:39 pm
a possible way to do this is to get the ID of the table, and then see if the spid holds any locks on that object by querying on sys.dm_tran_locks...
---------------------------------------------------------------------
August 16, 2010 at 10:57 am
both mirroring log shipping are replaying all transactions on the secondary, so if it CHANGES data that is held in the primary database, it has the same affect on the...
---------------------------------------------------------------------
August 16, 2010 at 8:23 am
according to SQL2008 BOL notruncate and truncateonly are not applicable to log files. So in fact what is happening is notruncate and truncateonly are ignored when it is a log...
---------------------------------------------------------------------
August 16, 2010 at 8:10 am
Viewing 15 posts - 2,356 through 2,370 (of 4,745 total)