Categories
- Applications (4)
- Code (60)
- Coldfusion (42)
- CSS (6)
- FTP (1)
- Hosting (1)
- Javascript (10)
- JQuery (4)
- Mainframe (1)
- Marketing Tactics (1)
- my portfolio (4)
- News (3)
- Problems & Fixes (18)
- Products (4)
- Randomness (6)
- Rants (1)
- Snippets (33)
- Software (1)
- SQL (14)
- Uncategorized (1)
- Web Development (1)
Blogroll
Archives
Meta
Author Archives: eSearing
Date Subtraction or Difference
Sometimes you need to know the differences between two dates in days months years whatever. SQL SERVER select datediff(day,date1, date2) as days_diff, datediff(month,date1, date2) as months_diff… Can also do year, quarter, week, hour, minute, and second dateparts. Dates can be … Continue reading
SQL using case to Identify blanks vs NULLs
I had a strange issue driving me nuts today. I had data with null values and could use isNull to capture most of them and assign a new value to the field. However about 10 records would not accept the … Continue reading
Posted in Code, Snippets, SQL
Tagged Blanks in Data, Null Data, Null vs Blanks, SQL Case
Leave a comment
New Website – HonestAutoQuote.com
I built a new website for a long time client. Check out HonestAutoQuote.com if you need a fast free honest auto insurance quote. There are no gimmicks, no promises of freebees like 1 in 100 wins a gift card, and … Continue reading
Posted in my portfolio, News
Leave a comment
Coldfusion CFC error messages
CFC’s are a wonderful thing in the world of Coldfusion Apps. They allow you append/display information without refreshing the page, deliver realtime queries of data, or display messages when users require guidance. They are wonderful until they break. If you … Continue reading
Posted in Coldfusion, Problems & Fixes
Leave a comment
Coldfusion Query of Queries to Join two datasets
I had an issue where I needed to join data from two different datasets with out having an ODBC connection created by the admin. I ran the two queries in thier respective databases then used query of queries to join … Continue reading
Posted in Code, Coldfusion, Snippets
Leave a comment