On 1/21/2015 1:09 PM, Roger Pack wrote:
might be nice to have some "standard" mac style keyboard shortcuts
made available--for instance "command + left" should take you to the
beginning of the current line [etc.]
Let me know if you want/need a full list or anything else I could do
here. I'd be h
might be nice to have some "standard" mac style keyboard shortcuts
made available--for instance "command + left" should take you to the
beginning of the current line [etc.]
Let me know if you want/need a full list or anything else I could do
here. I'd be happy to offer a small bounty for it as wel
On 20/01/2015 18:37, Parth Desai wrote:
> Hello,
>
> I have my postgres SQL database on my server PC and i want to restore
> the database backup from my server PC to Client PC using Batch
> file.Please help me how can i create batch file in order to restore my
> postgres databse.
> If possible ple
On 21/01/2015 06:52, parthdesai wrote:
> Hello,
>
> I want to restore my .BACKUP file and create .BACKUP file using
> command line.As i have created backup from my client PC and wanted to
> restore that using Batch file.Please suggest me how can i achieve
> this if possible send me the example bat
"C:\Program Files\PostgreSQL\9.3\bin\pg_dump.exe" -i -h localhost -p 5432 -U
postgres -F c -b -v -f "D:\GROVEL.backup" GROVEL
pause
-Restore
"C:\Program Files\PostgreSQL\9.3\bin\pg_restore.exe"-i -h localhost -p 5432
-U postgres -d Test1 -W -v "D:\GROVEL.backup"
pause
--
View this message i