Viewing 15 posts - 61 through 75 (of 145 total)
Carl Federl (4/22/2010)
The log files growth is the same as when it is in full mode
Do you mean the size of the database log file ( ldf extention) or the...
April 23, 2010 at 12:07 am
pshaship (4/22/2010)
see that you are rebuilding when > 30% fragmented and reorganizing < 30% - but are you limiting that to only tables with more than 1000 pages?
why only...
April 22, 2010 at 11:27 pm
I have 2000, 2005 Ent and 2008 Ent.
April 20, 2010 at 11:20 pm
Thanks for the suggestion on how to do reindexing but I still have the problem. It is very important in my enviroment to find a solution to this problem.
April 20, 2010 at 11:02 am
Yes I do. This is only a problem with logshipping databases. I only have 4mb line to offsite.
I think I saw something once that said if some backup is running...
April 20, 2010 at 4:39 am
Sorry here is the full select
use master
select * from sysprocesses where spid > 50 and program_name like 'SQLAgent - TSQL JobStep%'
April 20, 2010 at 4:11 am
Hi
The next step is to check the sysprocess table. Look for something like "SQLAgent - TSQL JobStep............" ...
April 20, 2010 at 4:02 am
Try this script and see if the job is still in the table:
select * from sysjobs
What kind off condition are you looking at. Here I am thinking that there could...
April 20, 2010 at 3:27 am
The log files growth is the same as when it is in full mode. I see logfiles that grow up to 18 gigs in one hour while reindex is happening.
April 20, 2010 at 3:19 am
Hi
For the sp that use the table you can run the following script.
select name from
sys.sql_modules join
sys.objects on sys.sql_modules.object_id =
sys.objects.object_id
where definition like'%tablename%'
order by name
April 20, 2010 at 3:14 am
1. Where did you setup the Alert?
2. What version suppose 2005
3. Check - select * from sysalerts in msdb
4. Is it perhaps logshipping
April 20, 2010 at 2:30 am
Add step to the Reindex job to run logshipping backup job and then you can use DBCC shrinkfile to shrink the log file. You can also put the DB in...
April 20, 2010 at 12:16 am
Hi
I found the answer after a bit of trile and error.
thanks
March 23, 2010 at 12:18 am
Thanks for the work around. Must be some kind of MS bug.
March 16, 2010 at 12:05 pm
Viewing 15 posts - 61 through 75 (of 145 total)