Viewing 15 posts - 61 through 75 (of 206 total)
CheckDB really reads and writes some information in log file. but it should not cause big log growth.
May 23, 2013 at 3:49 am
I faced same situation some years back. JOb would take 2 hours where as ssms run it just 20 minutes.
I used sqlcmd, it was fine, took just 20 minutes.
I believe...
May 23, 2013 at 3:32 am
The login that is running the backup script has enough permission for missing databases?
Any of the database are in restoring mode?
Please post your script to analyse.
May 22, 2013 at 4:29 am
karthik babu (5/14/2013)
We planned to upgrade because of its low performance
What kind of performance problem you are facing? like low memory, huge IO, CPU hike, blocking, deadlocks? Before going for...
May 16, 2013 at 4:33 am
are you using 32 bit? can you post the error message you received?
May 16, 2013 at 4:28 am
Are Primary and Secondary server in different time zone?
May 8, 2013 at 7:23 am
SQL Addict (5/8/2013)
This login has created in...
May 8, 2013 at 7:19 am
What is the auto growth of your lDF file?
I am about to blame the number of VLF files in your database. Your Purge might be adding lots of small sized...
May 8, 2013 at 4:16 am
A couple of websites can help you.
http://sqlserver.in/blog/index.php/archive/database-mirroring-step-by-step/
May 3, 2013 at 8:48 am
Can you check your error log for IO take longer duration warning message?
May 2, 2013 at 9:48 am
if your have sql 2008 or newer version, then
CREATE EVENT SESSION [Monitor Update Stats ] ON SERVER
ADD EVENT sqlserver.sql_statement_completed(
ACTION(sqlos.task_time,sqlserver.database_id,sqlserver.database_name,sqlserver.sql_text,sqlserver.transaction_sequence,
sqlserver.tsql_frame,sqlserver.tsql_stack)
WHERE ([sqlserver].[like_i_sql_unicode_string]([sqlserver].[sql_text],N'%update%statistics%')))
ADD TARGET package0.event_file(SET filename=N'd:\Monitor Update Stats .xel')
WITH (MAX_MEMORY=4096 KB,EVENT_RETENTION_MODE=ALLOW_SINGLE_EVENT_LOSS,MAX_DISPATCH_LATENCY=30...
May 2, 2013 at 9:45 am
sqlnaive (4/29/2013)
All the DBs were configured with Full recovery but the backups were were never taken afterwards
Correct me if am wrong. If backup never taken, then db will go...
April 30, 2013 at 8:52 am
I had the same problem few years back, no space in ldf drive. But users were able to logon. We received error only when try to run dml statements.
April 30, 2013 at 8:49 am
Viewing 15 posts - 61 through 75 (of 206 total)