我正在使用RStudio中的Connections窗格连接到PostgresSQL数据库。不久之前,我开始发布这篇文章Link,最后成功设置了它。
安装我的System new(Win10,R3.5.0,RStudio1.1.453)之后,我试图回溯我的步骤再次设置它,但是没有这样做。打开Connections窗格后,我看到的唯一现有来源是“Livy”和“Spark”。 Postgres和所有其他连接都丢失了。
我到目前为止尝试的是在我的计算机上安装PostgresSQL。我还安装了+-------------------------+------+---------------+-----------------+-------------------+------------+-----------------+
| DateValue | Name | TotalEarnings | PartialEarnings | ConsecutiveErrors | ErrorGroup | AverageEarnings |
+-------------------------+------+---------------+-----------------+-------------------+------------+-----------------+
| 2018-05-01 00:00:00.000 | John | 100.00 | -80.00 | 1 | 1 | 100.000000 |
| 2018-05-02 00:00:00.000 | John | 20.00 | 180.00 | 2 | 1 | 100.000000 |
| 2018-05-03 00:00:00.000 | John | 300.00 | 100.00 | 0 | 1 | 100.000000 |
| 2018-05-04 00:00:00.000 | John | 400.00 | 4600.00 | 1 | 2 | 100.000000 |
| 2018-05-05 00:00:00.000 | John | 5000.00 | -4400.00 | 2 | 2 | 100.000000 |
| 2018-05-06 00:00:00.000 | John | 600.00 | 100.00 | 0 | 2 | 100.000000 |
| 2018-05-07 00:00:00.000 | John | 700.00 | -720.00 | 1 | 3 | 100.000000 |
| 2018-05-08 00:00:00.000 | John | 80.00 | 8920.00 | 2 | 3 | 100.000000 |
| 2018-05-09 00:00:00.000 | John | 9000.00 | -8000.00 | 3 | 3 | 100.000000 |
| 2018-05-10 00:00:00.000 | John | 1000.00 | NULL | 0 | 3 | NULL |
+-------------------------+------+---------------+-----------------+-------------------+------------+-----------------+
,RPostgres
和odbc
软件包,希望Postgres选项出现在列表agian中,但不会结束。
RStudio上有这个故障排除Post,但到目前为止它没有帮助我。
有谁知道如何解决这个问题?谢谢:))
答案 0 :(得分:0)
我找到了答案!当我在系统上安装PostgreSQL时,未安装odbc驱动程序。以下是一些可能遇到相同问题的其他人的提示:
打开RStudio并输入:
odbc::odbcListDrivers()
如果未列出postgres,则至少可以这样做,您可以转到PostgresSQL页面并下载最新版本并安装它。如果由于某种原因未安装驱动程序,请打开
Application Stack Builder (it comes with the postgres installation)
导航到“数据库驱动程序”文件夹,然后选择“ psqlODBC 32和/或64”。安装它们。它将成功!