Frequently, developers and DBAs need to search databases for objects or data. If a database function that contains a specific table column or a variable name, or for a table that contains specific data is searched, the simple solution for Read More …
Month: May 2020
Part 1: MSSQL Frequently Asked Questions
1. Selecting all the values from a table for a particular date This is a very popular question and people sometimes answer that you need to use between. There is a problem with between if you happen to have a Read More …
Part 3: Logic and Conditionals
Boolean Expressions A boolean expression is any expression that evaluates to, or returns, a boolean value. Boolean Type The bool data type can be either true or false and is based on the concept that the validity of all logical statements must be either true or false. Booleans Read More …
Part 2: Data Types and Variables
Write Line The Console.WriteLine() method is used to print text to the console. It can also be used to print other data types and values stored in variables. Variables and Types In C#, a variable is a way to store data in Read More …
Part 1: Hello World
Read Line The Console.ReadLine() method is used to get user input. The user input can be stored in a variable. This method can also be used to prompt the user to press enter on the keyboard. C C# is a general-purpose, type-safe, object-oriented programming Read More …
CSS Cheat Sheet
Selectors Universal Selector * {} ID Selector #id {} Class Selector.class {} Type Selectorh1, h2 ,h3 {} Adjacent Sibling Selectorh1 + p {} Child Selectorul > li {} General Sibling Selectorh1 ~ p {} Descendant Selectorp a {} Attribute Selectordiv[attribute=”SomeValue”] Read More …
HTML Cheat Sheet
This cheat sheet – or HTML code quick reference – lists the common HTML tags and their attributes, grouped into relevant sections in an easy-to-read format. Basic HTML Structure Common Tags for Blogs<h?> heading </h?>Heading (h1 for largest to h6 Read More …
Introduction to HTML and CSS
This tutorial teaches you the basics of HTML and how to build your first website. That means how to layout an HTML page, how to add text and images, how to add headings and text formatting, and how to use tables. Read More …
Data Factory Ingestion Framework: Part 1 – Schema Loader
Use Case A business wants to utilize cloud technology to enable data science and augment data warehousing by staging and prepping data in a data lake. There are multiple different systems we want to pull from, both in terms of Read More …
SSIS 2016: An efficient way to handle transform and load of SCD2
Quick Review:This blog post is about type two slowly changing dimensions (SCD2). This is when an attribute change in row 1 results in SSIS expiring the current row and inserting a new dimension table row like this –> SSIS comes Read More …