Viewing 15 posts - 91 through 105 (of 143 total)
ALTER DATABASE [YOUR DB NAME]
SET MULTI_USER
WITH ROLLBACK IMMEDIATE
this works most of the times...
October 31, 2012 at 2:56 pm
Thanks Master Gail..
As you said the transactions might have already been committed and VLFs have been marked as reusable thats why I was able to delete the newly added log...
October 30, 2012 at 2:01 pm
Hi Master Gail... Like the way you educated on Log space, Can you give me a preferred Link to Study in depth on Resource Governor. There are a lot online...
October 30, 2012 at 1:11 pm
Hi Master Gail. Thanks for quick reply.
I just found out that Resource Governor of all of out instances in the clusters are managed by WSRM. How can I know...
October 30, 2012 at 11:45 am
select name,max_cpu_percent,max_memory_percent from sys.dm_resource_governor_resource_pools
Max CPU Percentage settings in a SQL Server 2008 R2. How do I know what would be the optimal percentage to configure. Is there a way...
October 30, 2012 at 11:03 am
Strange I did not do any shrinkfile I just went to DB properties and removed the log file from there and the log file just vanished as if nothing was...
October 29, 2012 at 11:42 pm
On a general note. In the article that you suggested, there is line where its says
undistributed transaction is causing the Log Growth. how can i check if which undistributed LSN...
October 29, 2012 at 3:18 am
Thanks mahesh.. your query is a little more elaborative than mine.
But my main question is if the Initial size is 70 GB can the consumed be 3 mb? I have...
October 29, 2012 at 3:13 am
I just red the whole article. actually you have provided the same article in the other issue as well.... Anyways
I have created one more log file here gave 50 GB...
October 29, 2012 at 3:05 am
Hello Master Gail: Thanks a million for such beautiful article on log behavior.
Quick Question: I have seen a situation where the there is no replication setup on the DB ....
October 29, 2012 at 2:51 am
Thanks mahesh:
Lets say if the drive is full, what options do we have apart from growing the mount point capacity.
Or is there a way to match the LSN here?...
October 29, 2012 at 1:03 am
Can you be more descriptive on this.
DB Recovery mode:
Is Differential Backups been taken every while.
OR.. Do this
DBCC Shrinkfile(Adventureworks2012_Log, 512);
October 28, 2012 at 11:56 pm
Yes I bet its the run away query. The log sizes are 90 and 85 GB. the data file sizes are. 1.4 TB and 900 GB.
the delta run job might...
October 28, 2012 at 11:12 pm
The number of times index has been used in an update operation (this counts inserts, updates, and deletes) along with the time of the last update
October 23, 2012 at 12:39 am
Agree with Master Gail Or if you do not need the Logs Just drop the database and then attached the data files with no ldf file. That way a fresh...
October 22, 2012 at 6:22 pm
Viewing 15 posts - 91 through 105 (of 143 total)