Just a Day in the Office
Stuff about applications and databases
Menu Close
  • Home
  • Vertica Kit
  • About Me
  • Dilbert

Author: Norbert Krupa

0

Copying a virtual machine from one host to another

Posted on July 2, 2013 by Norbert Krupa

This post will explain the process of copying a virtual machine instance from one host computer to another using Oracle’s VM VirtualBox with Windows 7.

Oracle, Virtual Machine, VirtualBox, Windows
0

You have an error in your SQL syntax

Posted on June 30, 2013 by Norbert Krupa

One of the most common problems I come across is users not being able to resolve a basic SQL syntax error thrown in MySQL. You have an error in your SQL syntax; check the manual that corresponds to your MySQL… Continue Reading →

MySQL
0

Why can’t I use my aliased column in the WHERE clause?

Posted on May 30, 2013 by Norbert Krupa

A query will fail when a column is aliased and then referenced in the WHERE clause. SELECT col1, col2 AS c2 FROM tbl1 WHERE c2 BETWEEN 2 AND 6SELECT col1, col2 AS c2 FROM tbl1 WHERE c2 BETWEEN 2 AND… Continue Reading →

Msg 207, SQL, SQL Server, T-SQL
0

Sorting software versions

Posted on March 12, 2013 by Norbert Krupa

There may be a time where a software version is stored as a string. In order to sort it, it will need to be broken up into its individual parts (major, minor, patch and build) and then sorted.

MySQL, SQL
0

NULL behavior in three valued logic

Posted on January 7, 2013 by Norbert Krupa

SQL uses three valued logic (true, false, or unknown). This is important when dealing with NULL as a query may not return the desired results.

SQL
0

Temporary tables and table variables in SQL Server

Posted on August 29, 2012 by Norbert Krupa

I will briefly explain the differences between temporary tables and table variables. Temporary Tables (#) CREATE TABLE #temp (col1 …)CREATE TABLE #temp (col1 …) Table Variables (@) DECLARE @temp TABLE (col1 …)DECLARE @temp TABLE (col1 …) What do the signs… Continue Reading →

SQL Server, T-SQL
0

Rows to column header using dynamic T-SQL

Posted on August 28, 2012 by Norbert Krupa

There may be instances where you need to prepare columns for a SELECT statement or for a SELECT … PIVOT.

SQL Server, T-SQL
1

Running total

Posted on August 14, 2012 by Norbert Krupa

This post will show an example of how to join a table against itself to return a running total.

SQL Server, T-SQL
0

Last second of future date

Posted on August 2, 2012 by Norbert Krupa

The following query is useful when trying to select an inclusive range of records using DATETIME. For this example, we will use GETDATE() which returns the current date & time. You can modify this at any instance in the code… Continue Reading →

Date, SQL Server, T-SQL
0

Split comma separated name (last, first)

Posted on July 24, 2012 by Norbert Krupa

The following example will return two columns (first name, last name) based on a single, concatenated, comma separated name. table —— name —— Chin, Cheryl Frank, Robert SELECT RIGHT([name], LEN([name]) – CHARINDEX(’,’, [name]) – 1) AS [first], LEFT([name], CHARINDEX(’,’, [name])-1)… Continue Reading →

SQL Server, String, T-SQL

Post navigation

Older Articles
Newer Articles

Connect

Official Seal

Official Seal

Recent Posts

  • Installing Gitblit on CentOS
  • Windows Authentication for SQL Server Connection
  • Canceling FreedomPop Premier Service
  • Bootable Windows 8 USB Drive
  • Resolving javaw.exe is not recognized With Squirrel SQL Client

Resources

  • Guide to forms based website authentication
  • Large collection of free Microsoft eBooks
  • Succint data structures
  • EXPLAIN Extended
  • Fundamental differences between hashing and encryption algorithms

SQL Server

  • Understanding how SQL Server Executes a Query
  • Why sum of nothing is null
  • NOEXPAND hint to use indexed views
  • SQL Performance
  • COUNT(*) vs. COUNT(1) vs. COUNT(pk)
  • NULL Comparison Search Conditions
  • SQL grouping ranges
  • 13 things you should know about statistics and the query optimizer
  • Stored procedure template using TRY CATCH
  • T-SQL: COALESCE vs. ISNULL vs. IS NULL OR
  • Precise or fuzzy matching with CONTAINSTABLE
  • Best way to remove time from datetime

Links

  • Code is not physical property
  • Prey project
  • Junior DBA Interview Questions
  • USB chargers, Apple is not the best
  • Are databases and programming at odds?
  • When the nerds go marching in
  • W3Schools Intervention
  • Twitter fights government subpoena
  • MySQL at Facebook: What is the query plan for a running query?
  • How I became a Password Cracker
  • Netherlands first country in Europe with net neutrality

News

  • Does your job create real value?
  • Google goes back to the future with SQL F1 database
  • Man's $600,000 Facebook Disaster Is A Warning For All Small Businesses

Humor

  • FunnyJunk tries to sue The Oatmeal
  • Google Fiber vs. Broadband
  • Maslow's hierarchy of needs
  • What a crappy evening in 1998 looked like
  • Programming skill vs blood alcohol concentration
  • Exploits of a mom

Archives

  • February 2016 (2)
  • July 2014 (1)
  • December 2013 (1)
  • November 2013 (1)
  • September 2013 (3)
  • August 2013 (1)
  • July 2013 (2)
  • June 2013 (1)
  • May 2013 (1)
  • March 2013 (1)
  • January 2013 (1)
  • August 2012 (4)
  • July 2012 (4)
  • June 2012 (7)
  • May 2012 (3)
  • April 2012 (6)

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Tags

7-Zip Apple backup bulk insert common table expressions cookie cURL Date Document Scanner Efficiency Epson Excel function Galaxy S3 Google Voice GT-S50 HTTP Header Java JIRA MacBook MySQL openrowset Oracle Parsing PDF percent change PHP PHPExcel PostgreSQL RSS Samsung SharePoint shell SQL sql-case sql-coalesce sql-isnull SQL Server String T-Mobile T-SQL VirtualBox Virtual Machine Windows XML
© 2021 Just a Day in the Office. All rights reserved.
Hiero by aThemes