
Manually Install MySQL on Windows Without Using MySQL Installer
Nov 23, 2023 · A quick walkthrough of manually installing MySQL on Windows without use of MySQL installer.
Spilt DateTime Ranges in SQL Server - CodeProject
Jul 1, 2023 · Split date time ranges into days or possibly other ranges using CTE in SQL Server
Convert a Hexadecimal to int using Microsoft SQL - CodeProject
Apr 23, 2007 · Using the code This code is quite simple to use as if you execute it from the Microsoft SQL query analyzer or Server management studio if you're using Microsoft SQL 2005. It creates a …
What is the Difference Between Cast and Convert? - CodeProject
Jan 1, 2016 · Read on! We’ll see whether there really is a difference between CAST and CONVERT in this post. All the examples for this lesson are based on Microsoft SQL Server Management Studio …
Row Numbers in SQL Query (Microsoft SQL Server 2000 and 2005)
Aug 17, 2009 · Obviously, this can be done with Microsoft SQL Server 2005. But the SQL server introduces a new function called row_number(). This function assigns a unique row number starting …
Losing Precision After Multiplication in SQL Server
May 7, 2014 · Losing precision after multiplication in SQL Server * The result precision and scale have an absolute maximum of 38. When a result precision is greater than 38, the corresponding scale is …
Create a SQL Server Management Studio Extension
Jul 2, 2021 · For years I’ve been using excel or dynamic SQL to generate SQL scripts to do data loads and updates and to generate IN predicates . For a small number of rows or values this is quicker …
Oracle PL/SQL collections - CodeProject
Mar 5, 2011 · Introduction PL/SQL applications typically consist of SQL statements intermixed with procedural logic to process data retrieved from the database. If compiled as a stored procedure, your …
How Do You Calculate the End of the Month in SQL?
Aug 30, 2016 · When working with SQL dates, sometimes you need to calculate the end of the month. Months are tricky! Some are 28 days, others 30 or 31, and now and then there’s a leap year! So, …
Beginners guide to accessing SQL Server through C#
Jun 27, 2003 · In this article I plan to demonstrate how to insert and read data from a SQL Server or MSDE database. This code should work on both SQL Server , I am using 2000, and MSDE.