msba
msba

Reputation: 139

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?

Upvotes: 1

Views: 159

Answers (1)

Pham X. Bach
Pham X. Bach

Reputation: 5442

For influxdb, you should escape dot character with \

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

Upvotes: 1

Related Questions