SQL Server Date Conversion FunctionHere we have a couple of code examples that work with dates. The first one gets today’s date […] February 7, 2017 in SQL Server tagged function / sql / date / Julian by Mike
SQL Server Finding Bad CharactersIn SQL Server you can run a SELECT query that shows you all of the records that have […] February 7, 2017 in SQL Server tagged data validation / like / collate / sql by Mike
SQL Server T-SQL StatementsAs mentioned earlier, the Transact-SQL statements have three categories: DDL statements, DCL statements, and DML statements. Each of […] February 5, 2017 in SQL Server tagged sql / DML / DDL / DCL by Mike
SQL Server User-Defined FunctionsIn SQL Server, user-defined functions (UDFs) are similar to stored procedures, except that they do not support OUTPUT […] February 5, 2017 in SQL Server tagged sql / clr / function / functions by Mike
SQL Server T-SQL VariablesWe need to back to basics in our Transact SQL (T-SQL) studies and look at programming with variables. […] February 5, 2017 in SQL Server tagged temporary / variable / declare / set by Mike
SQL Automatically Date and Time Stamp New RowsYou may to date and time stamp every row/record that you add to your table. You may want […] February 4, 2017 in SQL Server tagged date / time / stamp / sql by Mike
T-SQL Bulk Insert-Output Part 6This post continues from our other post called T-SQL Bulk Insert-Output Part 5. In this post we will […] January 30, 2017 in SQL Server tagged temp / temporary / table / T-SQL Bulk Insert by Mike
T-SQL Bulk Insert-Output Part 5This post continues from our second post called T-SQL Bulk Insert-Output Part 4. All we are going to […] January 30, 2017 in SQL Server tagged sql / distinct / T-SQL Bulk Insert by Mike
T-SQL Bulk Insert-Output Part 4This post continues from our second post called T-SQL Bulk Insert-Output Part 3. Let’s carry on from that […] January 30, 2017 in SQL Server tagged cast / header / sql / T-SQL Bulk Insert by Mike
T-SQL Bulk Insert-Output Part 3This post continues from our second post called T-SQL Bulk Insert Part 2. Let’s carry on from that […] January 30, 2017 in SQL Server tagged sql / trailer / T-SQL Bulk Insert by Mike
T-SQL Bulk Insert-Output Part 2This post continues from our first post T-SQL Bulk Insert-Output of Text Files. Here we will create a […] January 30, 2017 in SQL Server tagged union / bulk / sql / insert / cast / T-SQL Bulk Insert by Mike
SSMS Stored Procedure CreationA stored procedure in Microsoft’s SQL Server Management Studio (SSMS) is really just like a subroutine in other […] January 30, 2017 in SQL Server tagged sql / procedure / create / stored by Mike