Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

* replace "dualshield_database_name" with the name of the DualShield database. By default, it is "DualShield"

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

...