sample csv file

How to Download OData Source to SQL or a TXT File in SSIS

Applies to: SQL Server (all supported versions)  SSIS Integration Runtime in Azure Data Factory This tutorial walks you through the process to extract the Employees collection from the sample Northwind OData service (https://services.odata.org/V3/Northwind/Northwind.svc/), and then load it into a flat-file. 1. Create an Integration Services project Launch SQL Server Data Tools or Visual Studio. Click File, point to New, and click Project. In the New Project dialog box, Read More

sample csv file

Difference between Oracle, SQL Server, MySQL, and PostgreSQL

Oracle, SQL Server, MySQL 5 and PostgreSQL are the most commonly used databases and people normally get caught in the comparison between them. The inability to work around all aspects of comparison becomes a limitation and leads to indecisiveness about which database to use. Here is a comparison of the all the four in a Read More

sample csv file

How to Alter column size in SQL Server

If you’re using SQL Server, and you want to use T-SQL to change the size of an existing column, this article can help. By “changing the size of an existing column”, I mean changing the data size. For example, say you have a varchar(255) but you want to increase its size to varchar(500). Here’s what you need to do in that Read More

sample csv file

How to Fix The “Microsoft.ACE.OLEDB.16.0 Provider is not registered on the local machine.”

A popular issue in importing the data which is in Microsoft Excel 2016 to MSSQL via SSMS (Management Studio). It throw an error : “=================================== The ‘Microsoft.ACE.OLEDB.16.0’ provider is not registered on the local machine. (System.Data) To fix this, First thing first, install “Microsoft Access Database Engine 2016 Redistributable.” https://www.microsoft.com/en-us/download/details.aspx?id=54920 And then also check the Read More