Viewing 14 posts - 31 through 44 (of 44 total)
Hi,
After rebuild indexes you don't need to update statistics.
Also you don't need to rebuild index every night, read in BOL about fillfactor.
Best regards,
February 17, 2009 at 12:40 am
Hi,
You have some open transaction on database.
Check it with DBCC OPENTRAN
February 16, 2009 at 3:10 pm
Of course that he must shrink it after truncation. I wrote that to him. I still disagree that.
There is situation which I think that he has
1. I don't perform...
February 16, 2009 at 12:43 pm
Are you sure that problem is in Sql server?
Do you have any other applications on that server?
You can set minimum server memory to 2 GB but I am not...
February 16, 2009 at 10:19 am
Maybe is only different count because of null values.
Can you check it?
February 16, 2009 at 9:31 am
I understand both of you and you have right. Only thing which I want to tell him is that is that he must start to work transactional log backup's or...
February 16, 2009 at 9:24 am
It seems that You didn't understand my post.
You can't perform point in time backup without transactional log backup and if you don't have transactional log backup then you don't...
February 16, 2009 at 7:47 am
Hi,
Please explain me which log chain will he break if he don't work transactional log backups?
February 16, 2009 at 7:28 am
Also this query will show you CPU pressure:
SELECT TOP 50 (a.total_worker_time/a.execution_count) as [Avg_CPU_Time],
Convert(Varchar,Last_Execution_Time) as 'Last_execution_Time',
Total_Physical_Reads,
...
February 16, 2009 at 7:19 am
Do you have any open transaction?
Try with DBCC OPENTRAN.
February 16, 2009 at 7:15 am
Hi,
Use BOL and try to find something about sys.dm_exec_query_stats
February 16, 2009 at 6:15 am
Hi,
I suppose that you don't perform transactional log backup's 😉
That is reason why is your log file so big.
You need to do this:
Execute:
BACKUP LOG DatabaseName with truncate_only
DBCC SHRINKFILE...
February 16, 2009 at 6:08 am
First step is that you find query/procedure which is executing in report (look at dataset).
After that you should analyze execution plan.
February 16, 2009 at 5:51 am
thx toni i know for that, but i dont know may i do that in report with some expression or something... thx anyway
January 3, 2008 at 12:44 pm
Viewing 14 posts - 31 through 44 (of 44 total)