SQL Flashcards
Cache
d
Checkpoint
d
Universal No Lock
SET TRANSACTION LEVEL READ COMMITED
Json
Identifies data types auto
OLAP Cube
Pre-groups to save time.
Normalization
d
Entity
Tables
Attributes
Columns
Primary Key
Unique value per row. Can be made up of multiple columns (composite) key. Functions as a target which a foreign key can reference.
Candidate Key
Possible primary keys.
Surrogate Keys
Alternate primary keys that can be used to check the validity of primary key.
Dependency
Columns retrievable by key? In order to lookup a value, you have to know the key first.
Denormalization
SAMS vs RAD
Duplication
Attribute unnecessarily repeated. (SAMS and RAD duplication.)
Fact Table
d
Dimension Table
d
Forms
Every attribute must provide a fact about the key, the whole key, and nothing but they key, so help me Codd.
1st Normal Form
No repeating columns.
2nd Normal Form
Non-key columns shouldn’t be dependent on a part of the primary key.
3rd Normal Form
All fields must only depend on a key. (3NF)
Overnormalization
d
String Values
Larger because there are way more than 9(10?) values per character.
1 Byte
0 to 255 (8 bit)
2 Byte
+-30,000 (smallint)
4? Byte
+- 2,000,000,000 (int) (32 bit)
8? Byte
bigint (64 bit)
Fixed Precision
Decimal/Numeric. More costly. More precise/accurate than float.
Scale (Data)
Number of decimal places (123.123 = 3)
Floating Point Number
Efficient, but lose accuracy.
GUID
Global Unique ID
Parse()
Convert strings to dates.
Try_Cast()
Same as Cast, but generates nulls for errors. (Cast/Convert/Parse)
Schema
Groupings of objects (tables). Can grants permissions based on schemas.
Use full object name.
Servicer/Database/Schema/Object. Improves performance because SQL doesn’t have to figure out.
Persisted
SQL Function
Exists
Returns True/False
Data Integrity
d
Domain Integrity
Integrity within column (consistent data type, nullable, add rules(1:10), prior to x date)
Entity Integrity
Looks across columns. Uniqueness.
Referential Integrity
(Order for employee that doesn’t exist)
Default Value For Data Integrity
k today(), getdate()
Uniqueness Constraint
Generally covered by primary key, but could also be valid for surrogate keys.
Referential Enforcement
Cascade :Deletes all children when parent is deleted. Set Default: Catch all value when parent gets deleted. set null
CREATE SEQUENCE
D
Insert Into With Select
Insert Into Select * FROM WHERE
Table Scan
Scans entire table contents.
Leaf Level (Index)
All the data.
Why not index everything?
Indexes have to be updated every time table changes.
Clustered Index
Pyramid
Selectivity(Index)
By how much does the field reduce the values to be searched.
Density(Index)
Uniqueness
Depth(Index)
d
Windowed Functions Syntax
Function() Over (Partition By x,y,z Order By a,b,c,x,y,z)
Foreign Key
Links to the primary key of another table.
Connect to Python
import pyodbc conn = pyodbc.connect(‘Driver={SQL Server};’ ‘Server=he2qntvpsql382;’ ‘Database=MHASAMS01PDB;’ ‘Trusted_Connection=yes;’) cursor = conn.cursor() cursor.execute(‘SELECT Organization FROM MHASAMS01PDB.ra.OrgLookup’) for row in cursor: print(row)
Scoping
D
OLTP
Online Transaction Processing Typically facilitate and manage transaction-oriented (UPDATE, INSERT, DELETE, ALTER) applications vs analytical (OLAP).
ACID
Atomicity - Guarantees that each transaction is treated as a single “unit”, which either succeeds completely, or fails completely. Consistency - Ensures that a transaction can only bring the database from one valid state to another (transaction follows constraints, cascades, triggers, etc…) Isolation - Running transactions simultaneously produces the same outcome as running them sequentially. Durability - Once a transaction has been committed, it will remain committed. (Recorded in non-volatile memory).
Transaction(db)
A sequence of database operations that satisfies the ACID properties (can be perceived as a single logical operation on the data).
OLAP
Online Analytical Processing Optimized for read only. Good for analytics.
ODS
Operational Data Store
EDW
Enterprise Data Warehouse
EDH
Enterprise Data Hub