Viewing 15 posts - 16 through 30 (of 57 total)
December 3, 2013 at 3:03 am
have you ever used replication on this database and removed improperly or have you enabled Change Data Capture.
December 3, 2013 at 2:47 am
select log_reuse_wait_desc from sys.databases Where database_id =YOURDBID
pass database id and you'll get single row output.
December 3, 2013 at 2:25 am
you can make use of compressed backup feature which will reduce your backup size substantially.
also run select log_reuse_wait_desc from sys.databases
and review log_reuse_wait_desc
December 2, 2013 at 11:46 pm
why you want to take database offline, want to carry out any specific activities.
December 2, 2013 at 11:39 pm
through SELECT queries your database size will not grow however as i mentioned earlier tempdb might still grow also if you carry out any database maintenance tasks on this database...
December 2, 2013 at 10:10 pm
Your database should not grow if it is readonly, but if you have complex select queries with lot of sorting, grouping then your tempdb will keep growing.
December 2, 2013 at 9:53 pm
Table partitioning would be better solution for this, but be aware that Portioning is enterprise only feature.
December 2, 2013 at 9:48 pm
on which database you are running DBCC command, you can only run this on pricipal server not on mirrored server.
December 2, 2013 at 6:09 am
Hi,
an alternative solution would be
Select Service , DATE ,
dense_rank() over(Partition by Service, cast(date as date) order by Date ) srNo
From [TableName]
December 2, 2013 at 5:59 am
Hi,
If you got disconnected before your database fully recovers from restoring then it stays in Recovering mode forever, this had happens with me once when i was restoring database over...
December 2, 2013 at 4:04 am
i would suggest you to make use of maintenance plans, its not only help you to take different kind of backups also you can control backup retention period through maintenance...
December 1, 2013 at 11:48 pm
Hi,
in our environment we have excluded mdf,ldf,ndf files from antivirus scanning.
December 1, 2013 at 8:38 am
Hi,
passing some default values or altering table to add default constraint would be better solution.
November 30, 2013 at 7:34 am
Hi,
do you want to accomplish all three conditions in single query or you need three different queries.
November 30, 2013 at 7:29 am
Viewing 15 posts - 16 through 30 (of 57 total)