About 17,500,000 results
Open links in new tab
  1. postgresql - как изменить язык в SQL SHELL (psql) - Stack …

    Aug 1, 2022 · Как видно на скриншоте у меня похоже установлен п умолчанию русский язык и это вызывает некоторые проблемы с отображением т.к. sql shell (psql) 8-битный. Как …

  2. Run a PostgreSQL .sql file using command line arguments

    Mar 16, 2012 · 11 Walk through on how to run an SQL on the command line for PostgreSQL in Linux: Open a terminal and make sure you can run the psql command:

  3. How to execute a MySQL command from a shell script?

    How can I execute an SQL command through a shell script so that I can make it automated? I want to restore data I have collected in a SQL file using a shell script. I want to connect to a …

  4. Проблема с кодировкой в SQL Shell (psql)

    Jan 1, 2023 · Проблема с кодировкой в SQL Shell (psql)Откройте консоль Windows и сначала смените кодировку командой /c chcp 1251, а уже потом заходите в SQL Shell.

  5. How to run SQL in shell script - Stack Overflow

    How do you run a SQL command in a shell script while setting a variable? I had tried this method and it isn't executing the command, it is thinking the command is just a string. #!/bin/ksh variab...

  6. Connect to SQL Server Database from PowerShell - Stack Overflow

    Sep 5, 2014 · SQL Server Management Studio 2012 isn't a "version of SQL" - it's an application that can connect to and manage SQL Server, and it can connect to any version of SQL Server …

  7. How to run SQL script in MySQL? - Stack Overflow

    Jan 20, 2012 · From Workbench: File > Run SQL Script -- then follow prompts From Windows Command Line: Option 1: mysql -u usr -p mysql> source file_path.sql Option 2: mysql -u usr …

  8. проблема с кодировкой PSQL - Stack Overflow на ...

    May 9, 2018 · Работаю в windows 10, в файле находится INSERT в с данными в базу postgresql, часть данных кириллицей написана. При импорте данных через cmd …

  9. How to create a database from shell command in MySQL?

    Mar 11, 2010 · I'm looking for something like createdb in PostgreSQL or any other solution that would allow me to create database with a help of a shell command. Any hints?

  10. How do you execute SQL from within a bash script?

    In the past I have used SQL*Plus, and called the sqlplus binary manually, from a bash script. However, I'm trying to figure out if there's a way to connect to the DB, and call the script from …