Специализация:
Python, Базы данных
Чем занимаетесь:
Студент
Интересы:
Программирование
Стаж работы:
Отсутствует (учусь)
Контакты
Местоположение
Россия

Наибольший вклад в теги

Все теги (4)

Лучшие ответы пользователя

Все ответы (8)
  • Как добавить элемент в массив?

    ApXNTekToP
    @ApXNTekToP
    Недопрограммист
    #include <iostream>
    
    using std::cout;
    using std::endl;
    using std::cin;
    
    int main()
    {
        int num;
        setlocale(LC_ALL, "Rus");
        int array[5];
        for (int i = 0; i < 5; i++)
        {
            array[i] = rand();
        }
    
        cout << "Массив тут из " << array[1] << ' ';
    }
    Ответ написан
    Комментировать
  • Как восстановить БД из резервной копии PostgreSQL в Linux?

    ApXNTekToP
    @ApXNTekToP Автор вопроса
    Недопрограммист
    В моем слуаче, помог ответ на вопрос на stackoverflow: https://stackoverflow.com/questions/13115692/encod...


    I am answering this because nothing from StackOverFlow worked for me.

    I combined two solutions from other sites that did the job (this answer works for Ubuntu server 12.04 and PGSQL 9.1):

    Create a file:
    nano /etc/profile.d/lang.sh

    Add the following
    export LANGUAGE="en_US.UTF-8"
    export LANG="en_US.UTF-8"
    export LC_ALL="en_US.UTF-8"
    Save it
    Restart shell or run all export commands manually in current shell instance
    Reconfigure so the encoding can be UTF8 ([got it from here][1])
    sudo su postgres

    psql

    update pg_database set datistemplate=false where datname='template1';
    drop database Template1;
    create database template1 with owner=postgres encoding='UTF-8'

    lc_collate='en_US.utf8' lc_ctype='en_US.utf8' template template0;

    update pg_database set datistemplate=true where datname='template1';
    Use template1 for db creation.
    I hope this helps ;)


    Потом по совету galaxy я сделал вот так,


    DROP DATABASE merch_telegram_bot_db;
    CREATE DATABASE merch_telegram_bot_db ENCODING 'UTF8';


    Дальше я использовал свою команду:

    pg_restore -h localhost -p 5432 -U postgres -d merch_telegram_bot_db -v "/usr/local/bin/bot/test.backup"


    Спасибо всем за помощь!
    Ответ написан
    Комментировать