Description

Using the ScriptExecuter utility, you can export data from an SQL database complying with relevant criteria to the .csv file. For example, the data by dishes, prices, sales (cash and non-cash payments, returns) over a specified period.

Contents of Distribution Package

To export the data, download the ScriptExecuter distributive. The distribution package contains:

Utility Settings

To configure export, first, create a link to the SQL database (web.udl).

  1. Create a file having the .udl extension
  2. Right-click it and open its properties
  3. On the Provider tab, select Microsoft OLE DB Provider for SQL Server
  4. On the Connection tab, fill in the data for SQL server connection, and press Test Connection.

  5. Now, create an SQL request (SQLQuery3.sql). Below is an example of a simplest request:

    DECLARE 
    @RSIFR INT = :rsifr 
    SELECT TOP 1000 
    [SIFR] 
    ,[CODE] 
    FROM [RK7Base].[dbo].[MENUITEMS] 
    where (CODE=2) 


  6. Create a list.txt fileIn this file, specify the parameters from the readme.txt file that will define the export from the SQL database.

Example:

Below are command variants from the readme.txt file:

Running Utility

Before running the utility, create a ScriptExecuter shortcut and indicate the parameter -list:list.txt in the shortcut properties.

Once the shortcut is run, a folder (in our case this is the 73905 folder) containing the TEST.csv should appear in the root directory. A folder containing logs (Log folder) is also created. Here you can track the operations, their success, and errors.

Export from SQL to sFTP and from StoreHouse

There is an adjustment allowing to export data from StoreHouse.

The article has an attachment containing two files.

MS SQL must be installed on your computer.

Usage: Run the 105829 script or open it as a text file and copy-paste it to the MS SQL console

Attachments:

scriptexecuter.rar

sqlexport.zip