Search code examples
sqlinfluxdb

How to use a database in influx with a dot in its name?


When I try to reach my database, 'EUNL.F' there only comes back an error.

use exampledb

Works fine

but

use EUNL.F

returns: EUNL doesn't exist.

How do I include the dot to the name?


Solution

  • For influxdb, you should escape dot character with \

    use EUNL\.F
    use "EUNL\.F"