Viewing 15 posts - 16 through 30 (of 859 total)
I suggest to read transaction log management.
December 11, 2019 at 5:40 pm
select log_reuse_wait_desc from sys.databases where name='name'
state 1 - LOG_BACKUP
This the above always shows log backup. If yes, you need to increase the t-log backup frequency, like every 15 minutes.
Review all...
December 11, 2019 at 4:23 pm
Have you configured transaction log backup? How frequent you are running?
December 11, 2019 at 3:46 pm
I was asked to use a domain account.
Yes, use domain account, you will have a more control.
December 11, 2019 at 2:08 pm
I have faced same issue many times. Even row versioning enabled for the database which prevent the TempDB shrinking.
https://www.sqlserverblogforum.com/dba/tempdb-database-is-full/
November 28, 2019 at 11:00 am
Is there a way to get the list of databases from all sql server instances in the network? Lets say if we have 30 instances rather than getting the...
November 26, 2019 at 11:20 am
I am using SQL server 2017 standand edition. We installed on a virtual machine.
A question about SQL license:
If the VM has assigned 2 CPU (sockets) and each one has...
November 23, 2019 at 12:19 pm
Hi
This is when you are migrating from old server to new server.
Is it better to script out the logins and run the login script on new server?
OR
Use sp_help_revlogin and...
November 23, 2019 at 12:16 pm
Start collect the perfmon and in parallel run something like server side trace, whoisactive or extended events. You can compare the code run when you have high cpu or iops.
Query...
November 23, 2019 at 12:14 pm
Good Morning Colleagues
I hope you are doing good . Regarding SQL server 2016 , Does the SA account has the permissions to backup database ?
Best Regards
SA is the sysadmin...
November 23, 2019 at 12:11 pm
You can write SP by linked server to disable from one server. OR
use this in fly dynamic script
SELECT 'Exec msdb.dbo.sp_update_alert @name='''+name+''',@enabled=0'FROM msdb.dbo.sysalertsWHERE enabled =1
November 18, 2019 at 5:16 pm
Then you need to disable those alert in SSMS before doing any activity.
November 18, 2019 at 4:39 pm
Hello,
We had some sql server have issues on some production servers. We actually didn't know about some situations until users emailed us with issues. Therefore, our DBA team decided...
November 18, 2019 at 3:37 pm
Hi, what is an acceptable SQL Query Execution time? Is 3 minutes acceptable? What is an unacceptable amount of time?
It depends on the business, mostly as quick as possible.
November 15, 2019 at 4:23 pm
Viewing 15 posts - 16 through 30 (of 859 total)