Daily Shaarli

All links of one day in a single page.

November 7, 2020

SQL SERVER - Warning: Null value is Eliminated by an Aggregate or Other SET Operation - SQL Authority with Pinal Dave

First of all we should remember that default value of the setting is OFF, which is actually good. In subsequent blogs, we would cover an error which can be suppressed using same set option. Tuning it ON can be dangerous as well. Stay tuned!

How to Disable All CHECK & Foreign Key Constraints in a Database in SQL Server (T-SQL Examples) | Database.Guide

EXEC sp_MSforeachtable @command1="ALTER TABLE ? NOCHECK CONSTRAINT ALL"

How can I scroll a web page using selenium webdriver in python? - Stack Overflow

driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")