forked from rstudio/bigdataclass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
01-database-access.Rmd
199 lines (151 loc) · 4.16 KB
/
01-database-access.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
---
title: "Access a database"
output: html_notebook
---
## 1.1 - Connect to a database
1. Click on the `Connections` tab
2. Click on the `New Connection` button
3. Select `Postgres Dev`
4. Click OK
## 1.2 - Explore the database using the RStudio IDE
1. Expand the `datawarehouse` schema
2. Expand the `airport` table
3. Click on the table icon to the right of the `airport` table
4. *(Optional)* Expand and explore the other tables
5. Click on the *disconnect* icon to close the connection
## 1.3 - List drivers and DSNs
1. To get a list of drivers available in the server
```{r, access}
library(odbc)
odbcListDrivers()[1:2]
```
2. Click on the *ellipsis* button located in the **Files** tab
3. Type: `/etc`
4. Locate and open the `odbcinst.ini` file
5. To see a list of DSNs available in the server
```{r}
odbcListDataSources()
```
6. Using the *ellipsis* button again, navigate to `/etc/odbc.ini`
## 1.4 - Connect to a database using code
1. Run the following code to connect
```{r}
library(DBI)
con <- dbConnect(odbc::odbc(), "Postgres Dev")
```
2. Use `dbListTables()` to retrieve a list of tables
```{r}
dbListTables(con)
```
3. Use `dbGetQuery()` to run a quick query
```{r}
odbc::dbGetQuery(con, "SELECT * FROM datawarehouse.airport LIMIT 10")
```
4. Use the SQL chunk
```{sql, connection = con}
SELECT * FROM datawarehouse.airport LIMIT 10
```
5. Use the `output.var` option to load results to a variable
```{sql, connection = con, output.var = "sql_top10"}
SELECT * FROM datawarehouse.airport LIMIT 10
```
6. Test the variable
```{r}
sql_top10
```
7. Disconnect from the database using `dbDisconnect()`
```{r}
dbDisconnect(con)
```
## 1.5 - Connect to a database without a DSN
*A more complex way of connecting to a database, using best practices: http://db.rstudio.com/best-practices/managing-credentials/#prompt-for-credentials *
1. Use the following code to start a new connection that does not use the pre-defined DSN
```{r, eval = FALSE}
con <- dbConnect(
odbc::odbc(),
Driver = "PostgreSQL",
Server = "localhost",
UID = rstudioapi::askForPassword("Database user"),
PWD = rstudioapi::askForPassword("Database password"),
Port = 5432,
Database = "postgres"
)
```
2. When prompted, type in **rstudio_dev** for the user, and **dev_user** as the password
3. Disconnect from the database using `dbDisconnect()`
```{r}
dbDisconnect(con)
```
## 1.6 - Secure credentials in a file
1. Open and explore the `config.yml` file available in your working directory
2. Load the `datawarehouse-dev` values to a variable
```{r}
dw <- config::get("datawarehouse-dev")
```
3. Check that the variable loaded propery, by checking the `driver` value
```{r}
dw$driver
```
4. Use info in the config.yml file to connect to the database
```{r}
con <- dbConnect(odbc::odbc(),
Driver = dw$driver,
Server = dw$server,
UID = dw$uid,
PWD = dw$pwd,
Port = dw$port,
Database = dw$database
)
```
5. Disconnect from the database using `dbDisconnect()`
```{r}
dbDisconnect(con)
```
## 1.7 - Environment variables
1. Open and explore the `.Renviron` file available in your working directory
2. Confirm that the environment variables are loaded by using `Sys.getenv()`
```{r}
Sys.getenv("uid")
```
3. Pass the credentials using the environment variables
```{r}
con <- dbConnect(
odbc::odbc(),
Driver = "PostgreSQL",
Server = "localhost",
UID = Sys.getenv("uid"),
PWD = Sys.getenv("pwd"),
Port = 5432,
Database = "postgres"
)
```
4. Disconnect from the database using `dbDisconnect()`
```{r}
dbDisconnect(con)
```
## 1.8 - Use options()
1. Open and explore the `options.R` script available in your working directory
2. Source the `options.R` script
```{r}
source("options.R")
```
3. Confirm that the environment variables are loaded by using `Sys.getenv()`
```{r}
getOption("database_userid")
```
4. Pass the credentials using the environment variables
```{r, eval = FALSE}
con <- dbConnect(
odbc::odbc(),
Driver = "PostgreSQL",
Server = "localhost",
UID = getOption("database_userid"),
PWD = getOption("database_password"),
Port = 5432,
Database = "postgres"
)
```
5. Disconnect from the database using `dbDisconnect()`
```{r}
dbDisconnect(con)
```