Subject | Re: [firebird-support] Create new database fails |
---|---|
Author | Ivan Prenosil |
Post date | 2005-04-08T15:33:04Z |
> Its my first attempt to create a databse in firebird.Either Firebird server is not started,
> Its version 1.5 on windows 2003
>
> From the command line i run:
> SQL> CREATE DATABASE 'httplogs.fdb' USER 'SYSDBA' PASSWORD 'masterkey';
> Statement failed, SQLCODE = -904
>
> unavailable database
>
> Even if i use a full path f:\db\xxx.fdb i got the same error.
> Sorry if this is a common newbie question, but i don't seem to find
> the solution.
or you have installed Firebird Classic, in which case
you can't use local protocol, try
CREATE DATABASE 'localhost:c:\httplogs.fdb' USER 'SYSDBA' PASSWORD 'masterkey';
Ivan