| От | Mike Mascari |
|---|---|
| Тема | Re: Another problem - exporting from access |
| Дата | |
| Msg-id | 3931E1E5.E37A98D@mascari.com обсуждение исходный текст |
| Ответ на | Another problem - exporting from access (CB <craigbe@ids.net>) |
| Список | pgsql-general |
CB wrote: > > Hi, > > I also have another problem.. I exported a table from access to my pg7 > DB but whenever I try to do ANYTHING with that table in pgsql it tells > me Error: Relation <mytablehere> doesn't exist. > > What the heck is up with that?! > > Help! :) > > Craig Whenever you export a table from Access to PostgreSQL via ODBC, the export generates case-sensitive table and field names which have to be quotes in PostgreSQL. So, for example, your queries in psql would be like: SELECT "Employees"."Employee" FROM "Employees" WHERE "Employees"."Salary" > 100000; instead of: SELECT employees.employee FROM employees WHERE employees.salary > 100000; Hope that helps, Mike Mascari
В списке pgsql-general по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера