You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

If your DualShield is using a Microsoft SQL database, please follow the steps below.

1 - Create a data-format file, name it with suffix.fmt, e.g. DB3.FMT. Copy the content below to the file:

12.0
7
1 SQLCHAR 0 1 "\"" 0 first_double_quote  Latin1_General_CI_AI
2 SQLCHAR 0 20 "\",\"" 5 ip_from ""
3 SQLCHAR 0 20 "\",\"" 6 ip_to ""
4 SQLCHAR 0 255 "\",\"" 3 country_code Latin1_General_CI_AI
5 SQLCHAR 0 255 "\",\"" 4 country_name Latin1_General_CI_AI
6 SQLCHAR 0 255 "\",\"" 7 region_name Latin1_General_CI_AI
7 SQLCHAR 0 255 "\"\r\n" 2 city_name Latin1_General_CI_AI

*Ensure there is a carriage return after the last format-file row.*

2 - Log into the MS-SQL studio

3 - Change to the DualShield database

4 - Execute the script below to import the database

BULK INSERT [ database_name . [ schema_name ] . | schema_name . ] .[ip2location_db3]
    FROM 'FILE-PATH-TO\IP2LOCATION-LITE-DB3.CSV'
    WITH
    (
        FORMATFILE = 'FILE-PATH-TO\DB3.FMT'
    )
GO

* replace "FILE-PATH-TO" with the actual file path where the downloaded file is saved, e.g. "c:\downloads"

  • No labels