SQL Server: Useful Metadata queries
Metadata queries are really helpful in discovering information for a given database schema. Database information including the tables, views, columns names, data types, indexes, and table constraints are all available using queries such as these.
Category Database
SQL Server: Generate Insert Statement Script
When running reports, for example, the same insert statements need to be created over and over again. SQL Server includes a great feature to generate these insert statements automatically.
Category Database
SQL Server – Dealing with NULL values when sorting
When working with NULL values, it’s important how you deal with NULL records in your database. This example walks through and explains how to sort and separate NULL and non-NULL values. This example should work with all database types including MySQL, MS SQL, and postgreSQL.
Category Database
MySQL: Datetime Versus Timestamp Data Types
The temporal data types in MySQL can be confusing. Hopefully, this example and discussion will help to explain the differences in the timestamp and datetime data types.
Category MySQL
How to Loop through Enum Values in C#
Looping through an enumeration list or enum in C# is an essential skill. This tech-recipe provides a detailed example and walks through an explanation of the looping process.
Category Computer programming
Oracle: Using the AFTER INSERT and AFTER UPDATE triggers
A database trigger is a stored procedure that automatically executes whenever an event occurs. The event may be insert-delete-update operations. Oracle initiates an ‘AFTER INSERT’ trigger after an insert event has occurred and an ‘AFTER UPDATE’ trigger after an update event has occurred.
Category Oracle
Oracle: How to Create a Copy of Table Data
Knowing how to copy existing table data is beneficial to any DBA. This tutorial will demonstrate how to copy an existing table’s data into a new table. Examples with walkthrough explanation are provided.
Category Oracle
Oracle: How to Create an Auto Increment Field Using Sequence
In Oracle, you can create an auto increment field using ‘sequence’ database object that can be assigned as primary keys. Using Oracle ‘sequence’ object, you can generate new values for a column. An Oracle sequence is an object like a table or a stored procedure. Examples with walkthrough explanations are provided.
Category Oracle
Two Common Mistakes in Floating Point Arithmetic in C
This tutorial will demonstrate two rules that must be respected when performing floating point arithmetic in C. Following these rules will prevent loss of information. Examples with walk through explanation provided.
Category C programming
MySQL: How to get row number order
These directions walk through how one can displaying the row number order/rank for result set obtained from executing a sql query. An example with walkthrough explanation is provided.








