[EMAIL PROTECTED] ("Pradeep Chandru") writes:
>
>
> Hi,
>
Hi,
I have two questions.
1. Is there a way to find the database creation time?
2. Is WAL implementation possible in postgres7.1.1? If so simple steps for
the same? This is required to migrate from the older setup to the latest
version in parallel without disturbing the current setup.
Regards,
P
Hello,
I tried to create database using embedded SQL through following
statements
...
exec sql begin declare section;
char dbname[]="pgdb";
...
exec sql end declare section;
main()
{
...
exec sql create database :dbname ;
...
}
On compilation ecpg gives parser error at "..