Skip to content
Advertisement

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?

Advertisement

Answer

For influxdb, you should escape dot character with

use EUNL.F
use "EUNL.F"
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement