Viewing 15 posts - 1 through 15 (of 91 total)
Also, Below is a great T-SQL script to find startup time for SQL server, SQL Server agent and windows server.
-- ============================================================= --
-- Get OS, SQL Server, SQL Agent Restart times
select
@@SERVERNAME...
May 23, 2023 at 6:23 pm
Thanks Grant. I am actually looking for getting notified for "any" new database get created in our subscription. For now as a workaround, we have restricted permission for only authorized...
February 28, 2020 at 6:19 pm
Did you supply user name and password for authentication while creating DBMail account?
Please see below:
https://www.mssqltips.com/sqlservertip/2578/setup-sql-server-database-mail-to-use-a-gmail-hotmail-yahoo-or-aol-account/
August 28, 2018 at 8:04 am
I would not give my whole database to third party vendors.. Test in Dev/QA/Test environment before implementing any changes in Prod. If issue is not replicated to other environments and...
October 4, 2017 at 8:46 am
I opened a case with MS support. We enabled all required ciphers with the use of IIS Crypto tool on client server. Issue resolved.
August 28, 2017 at 6:43 am
No They are running the same operating system (Windows 2012 R2)
August 11, 2017 at 11:47 am
I have SSMS 2017 client on another Windows 2012 R2 server and from there I can connect to these servers fine. The issue is only with this one client server...
August 11, 2017 at 8:56 am
Thanks, will keep digging..
November 19, 2015 at 7:38 am
It's better to put that in a standard folder. Make folder structure same across all your instances for better administration.
October 30, 2015 at 12:11 pm
Very nice question. thanks. Learnt something new.
October 30, 2015 at 9:39 am
Is your account (account through which you are running this query) has access?
Check this out.
http://harshbiplus.blogspot.in/2015/01/failed-to-initialize-sqlcmd-library.html..
October 30, 2015 at 9:14 am
;WITH QUERY1 ( Total_Physical_Memory_In_MB,NumberofCPU )
AS (SELECT [total_physical_memory_kb] / 1024 AS [Total_Physical_Memory_In_MB],
CPU_Count AS NumberofCPU
FROM [master].[sys].[dm_os_sys_memory]
CROSS JOIN sys.dm_os_sys_info
...
October 29, 2015 at 1:28 pm
Use SQL Sentry or Spotlight. Both are good tools for Monitoring. Go through documentation/user guide of those to see if that satisfy your requirements.
October 14, 2015 at 9:37 am
Thanks,
It will be Transactional replication with Pull from Subscription server.
So as per your reply,
- We need to backup distribution database
- We need to backup publisher database
- We neeed...
May 31, 2011 at 8:09 pm
Viewing 15 posts - 1 through 15 (of 91 total)