- May 2020
-
software.intel.com software.intel.com
-
This it the workaround to get the NCS2 stick working within virtual-box by creating 2 USB filters for the stick
-
-
software.intel.com software.intel.com
-
Page describes differences between NCSDK and OpenVINO. There is some example code of how to initialize things in Python and C++ that may be useful at the bottom of the page.
-
- Aug 2019
-
www.writethedocs.org www.writethedocs.org
-
A beginner’s guide to writing
How to document
-
- Jan 2019
-
community.home-assistant.io community.home-assistant.io
-
Stream CCTV to kodi
-
-
-
Build a person detection system for cctv
-
-
-
How to easily Detect Objects with Deep Learning on Raspberry Pi
-
-
-
Person detection for cctv
-
-
www.reddit.com www.reddit.com
-
Passed 70-761!
79-761 studying tips
Tags
Annotators
URL
-
-
www.essentialsql.com www.essentialsql.com
-
Check out these 9 best study tips I came across in to help you with 70-761 certification.
79-761 study tips
-
- Dec 2018
-
stackoverflow.com stackoverflow.com
-
SELECT sj.name , sja.* FROM msdb.dbo.sysjobactivity AS sja INNER JOIN msdb.dbo.sysjobs AS sj ON sja.job_id = sj.job_id WHERE sja.start_execution_date IS NOT NULL AND sja.stop_execution_date IS NULL
View current running jobs SQL
-
-
docs.microsoft.com docs.microsoft.com
-
sys.database_mirroring
Check / View SQL Mirror settings
-
-
www.mssqltips.com www.mssqltips.com
-
ALTER DATABASE dbName SET PARTNER TIMEOUT 20
Adjust SQL Mirror timeout for fail over
-
- Nov 2018
-
www.experts-exchange.com www.experts-exchange.com
-
ALTER DATABASE SET trustworthy on
Database may have to me made trustworthy to initiate linked server connection
-
-
support.microsoft.com support.microsoft.com
-
n the Advanced Security Settings dialog box, make sure that SELF is listed under Permission entries. If SELF is not listed, click Add, and then add SELF.Under Permission entries, click SELF, and then click Edit.In the Permission Entry dialog box, click the Properties tab.On the Properties tab, click This object only in the Apply onto list, and then click to select the check boxes for the following permissions under Permissions:Read servicePrincipalNameWrite servicePrincipalName
Permissions needed for AD account to write SPN name
-
rant delegation permission to the SQL Server service account domain user account.
Computer and SQL service accounts need to be grated delegation permissions in AD users and computers
-
-
docs.microsoft.com docs.microsoft.com
-
The client and server computers must be part of the same Windows domain, or in trusted domains. A Service Principal Name (SPN) must be registered with Active Directory, which assumes the role of the Key Distribution Center in a Windows domain. The SPN, after it is registered, maps to the Windows account that started the SQL Server instance service. If the SPN registration has not been performed or fails, the Windows security layer cannot determine the account associated with the SPN, and Kerberos authentication will not be used.
2 main criteria for linked servers to pass through AD credentials
- be on the same domain
- have an SPN registered for the AD account running the SQL service
-
-
dbatools.io dbatools.io
-
Returns of listing of “required” SPNs for a given computer’s instance of SQL Server. The cmdlet will discover all instances of SQL Server on a given computer name. For each instance found, the cmdlet will generate a list of required SPNs based on active TCP/IP ports. The cmdlet will also warn you if an instance is using dynamic ports. Each returned SPN object will also specify if the SPN is currently set or
-
-
social.msdn.microsoft.com social.msdn.microsoft.com
-
exec master.sys.xp_loginconfig 'login mode'
How to find whether an SQL instance is windows authentication only or mixed mode
-