I use PostgreSQL 9.1 and Django 1.6.2.
CREATE DATABASE db WITH ENCODING = 'UTF8' TEMPLATE template0;
CREATE USER db_user WITH password 'password';
GRANT ALL privileges ON DATABASE db TO db_user;
Then I want to load fixture:
python manage.py loaddata cars
Killed
What does it mean? Killed? All works perfect with mysql. Cars.yaml - its a very big file (it has russian words, do I need to create db with LC_COLLATE = 'ru_RU.UTF-8'?).
In mysql I use:
CREATE DATABASE `db` CHARACTER SET utf8 COLLATE utf8_general_ci;
And everything works fine. Please, help, I am newbie in PostgreSQL.
How to fix that problem with killed
?