Re: How do I use text script containing SQL?

Поиск
Список
Период
Сортировка
От clayton cottingham
Тема Re: How do I use text script containing SQL?
Дата
Msg-id 3AA3E4A2.5DDC38A9@smartt.com
обсуждение исходный текст
Ответ на How do I use text script containing SQL?  ("Jeff S." <pgsqluser@yahoo.com>)
Список pgsql-sql
"Jeff S." wrote:
> 
> I want to build my tables by placing all the sql
> statements in a file. What is the correct way to use
> this file with psql?
> 
> Example: My text file has this in it:
> 
> CREATE TABLE table1 (
>    table1_id serial,
>    field1  char(5),
>    PRIMARY KEY (table1_id)
> );
> 
> I want to be able to use the file to create my table.
> I've tried psql -d databasename -e < filename.txt
> but that doesn't work.
> 
> __________________________________________________
> Do You Yahoo!?
> Get email at your own domain with Yahoo! Mail.
> http://personal.mail.yahoo.com/
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org



the  syntax is 
psql database < file


В списке pgsql-sql по дате отправления:

Предыдущее
От: "Jeff S."
Дата:
Сообщение: How do I use text script containing SQL?
Следующее
От: David Olbersen
Дата:
Сообщение: Re: How do I use text script containing SQL?