search for: accdb

Displaying 18 results from an estimated 18 matches for "accdb".

2012 Jun 14
2
Using Sub
...ing to get the sub function to work but can't for the life of me figure it out. I tried looking at ?sub but I think there is something that I am just not understanding. Example failed attempts > sub("\\","/","G:\Compensation Audits_Reports\Step Audit\Steps off Step.accdb") Error: '\C' is an unrecognized escape in character string starting "G:\C" > sub("\\","/","G:\Compensation Audits_Reports\Step Audit\Steps off Step.accdb",fixed=TRUE) Error: '\C' is an unrecognized escape in character string starting...
2017 Jul 31
1
Access Data Base Reading on Linux Platform
Dear All, I am really far from a database expert (I do prefer flat files as long as that is reasonable), but I have to deal with an accdb database (Microsoft Access new format). It all stems from the fact that I run R almost exclusively on Debian platforms. I did a bit of googling http://r.789695.n4.nabble.com/How-to-load-data-from-accdb-into-R-td4656613.html http://rprogramming.net/connect-to-ms-access-in-r/ https://www.r-blogger...
2010 Mar 10
1
Importing Access 2007 data with ROBC
Hi all, I'm trying to import Microsoft Access data into R. It looks like I'm supposed to use the ROBC package, and this works fine with old Access files (those with an .mdb extension). However, lovely Microsoft must constantly update their software. Modern Access files have an .ACCDB extension. I cannot seem to coerce R to import data from such a file. Any advice? I've been using this code: testdb <- file.path("c:/Salmon_data.mdb") channel <- odbcConnectAccess(testdb) Data <- sqlFetch(channel,"Table1") When I replace it with an Access 2007 fi...
2012 Feb 26
10
Software Profili2 on Ubuntu by Wine
Hi Greetings to all Is my first post in this forum sorry for my english Many compliment to all developers for great work in Wine Profili2 is the most famous Windows software for designe airfoil profile for RC airplane models. Some times ago I have installed it in ubuntu 10.10 by Wine(1.3.5) with success This software use an mdb file First I have installed Profili download in this web site
2015 Apr 27
2
Como conectar R con una base de datos Access en Windows 64-bit (RODBC package)
...rror in odbcConnectAccess("C:/Users/Isa/FPI-AZTI/JUVENA/Databases/MEGASCOPE_JUVENA2014.mdb") : odbcConnectAccess is only usable with 32-bit Windows He probado también con el siguiente, pero de nuevo sin éxito: mdb <- odbcDriverConnect("Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=C:/Users/database.mdb") Warning messages: 1: In odbcDriverConnect("Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=C:/Users/Isa/FPI-AZTI/JUVENA/Databases/MEGASCOPE_JUVENA2014.mdb") : [RODBC] ERROR: state IM002, code 0, message [Microsoft][Administrador de controladores...
2008 Nov 14
2
performance problem with access database
Hello I have problem with a access application, when I try to start the application then I must wait 5 minutes ago before he started. I do this from a WinXp Workstation to a Linux Debian Etch and samba 3.0.24 installation. What can I do for better performance. best regards pat
2012 Dec 14
1
How to import the large dataset into R
HI, R Users, I met the following problem: I was trying to import data of one table in .accdb database into my ODBC database for being imported into R. The table contains 1021965 records. I always got the following error msg even I change the drive: The query can not be completed. Either the size of the query result is larger than the maximum size of a database(2GB), or there is not enou...
2010 Mar 18
1
Imported tables from Access 2007
Hi all, I am very new to R and I'm trying to import data from Microsoft Access. So far, I've managed to do so successfully using the following code: testdb <- file.path("c:\Databse.accdb") channel2 <- odbcConnectAccess2007(testdb) data.table <- sqlFetch(channel2,"data") This successfully imports a table(?) called "data.table". But when I try to run basic stats or manipulate the data I've imported, I can only do so when specifying "data.tabl...
2011 Dec 04
3
RODBC connect to Excel (64-bit Windows 7)
...called result. I check if it is created: > odbcDataSources() dBASE Files "Microsoft Access dBASE Driver (*.dbf, *.ndx, *.mdx)" MS Access Database "Microsoft Access Driver (*.mdb, *.accdb)" Excel file "Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)" * results* "Microsoft Excel Driver (*.xls, *.xlsx, *.xlsm, *.xlsb)" and tried again but it doesn't work:...
2017 Aug 31
3
Conectar Access con R
...eras tratar en el repertorio DSN: 2.1 Para ello tienes que Ejecutar el programa odbcad32.exe En W-10, lo encuentro en: C:\Windows\SysWOW64\odbcad32.exe (valorar el crear acceso directo en el escritorio) 2.2 Al ejecutarlo, sale la siguiente plantilla: Seleccionar Access mdb y accdb y y pulsar botón ?Agregar? 2.3 Seleccionar Access Driver (*.mdb, *.accdb) -> ?Finalizar? 2.4 Cumplimentar los datos de la plantilla, y pulsar botón ?Seleccionar? 2.5 Indicar la ubicación del fichero, y pulsar botón ?Aceptar? Y creo que desde aquí, ya podrías cone...
2017 Aug 31
2
Conectar Access con R
...N: 2.1 Para ello tienes que Ejecutar el programa odbcad32.exe En W-10, lo encuentro en: C:\Windows\SysWOW64\odbcad32.exe (valorar el crear acceso directo en el escritorio) [cid:image012.jpg en 01D3225E.C92C4BF0] 2.2 Al ejecutarlo, sale la siguiente plantilla: Seleccionar Access mdb y accdb y y pulsar botón ?Agregar? 2.3 Seleccionar Access Driver (*.mdb, *.accdb) -> ?Finalizar? [cid:image013.jpg en 01D3225E.C92C4BF0] [cid:image015.jpg en 01D3225E.C92C4BF0] 2.4 Cumplimentar los datos de la plantilla, y pulsar botón ?Seleccionar? 2.5 Indicar la ubicación del ficher...
2010 Dec 17
2
RODBC for 64-bit R with 32-bit Access
Hello Folks, I do hope this is the correct place to post (and not in R-SIG-DB). I have spent the better part of a day searching for an answer to this question, and have yet to resolve it. I am trying to query an .accdb Access database (with 32-bit Office 2007 currently residing on the machine) with 64-bit R via RODBC. There seem to be some conflicting accounts as to whether or not this is possible. Ripley's ODBC Connectivity PDF and the odbcConnect docs indicate it is not possible (copied below for reference...
2010 Jul 12
0
Error in storage.mode(test) <- "logical"
Hi There, I get the following error from the code pasted below: Error in storage.mode(test) <- "logical" : object 'HGBmt12_Natl_Ave_or_Facility' not found library(RODBC) library(car) setwd("c://temp//cms") a07.connect <- odbcConnectAccess2007("DFC.accdb") sqlTables(a07.connect) ##provides list of tables## dataset <- sqlFetch(a07.connect,'Analysis File 2007-2009') #puts dfc data into table mydata str(dataset) #this works and gives correct values HGlt102009=dataset[,6] HGBL10_F_2007 =dataset[,11] HGmt122009=dataset[,7] HGBL12_F_2007...
2011 Jul 25
2
MDB Files
Hi. I have a problem with Ms Access *.MDB files. When I tried to edit forms it takes at least 60 seconds to edit that forms also to edit query. Application is working fine. But editing ... horrible. I added these lines in my smb.conf file but nothing oplocks = no level2 oplocks = no strict locking = no fake oplocks = no veto oplock files =
2017 Aug 31
2
Conectar Access con R
De todas formas prueba a realizar la conexión de forma manual desde RStudio. Las últimas versiones (o al menos la Preview) incluyen una pestaña "Connections" con la que a través de un Wizard puedes configurar conexiones, entre ellas a ODBC y una de las opciones es "MS Access". Saludos, Carlos Ortega www.qualityexcellence.es El 31 de agosto de 2017, 12:11, Francisco Rodríguez
2013 Jul 16
2
Importing data by odbcConnectExcel in 64 bit
I have probably an old question. I have R.3.0.1 installed in 64 bit windows 7. The odbcConnectExcel in RODBC library does not work. Tried odbcConnectExcel2007 still does not work. Any ideas. Thanks Melissa<-sqlFetch(odbcConnectExcel2007("F:\\Cotton2012\\validation.xlsx"),sqtable = "Sheet3", + na.strings = "NA", as.is = TRUE) Error in
2011 Mar 22
2
Loading mdb
Well im thoroughly frustrated after 25 minutes of checking and rechecking my path. What do i not know about loading a mdb that is keeping me from loading my data. i have loaded the Hmisc library and pointed it too my data using mdb.get and continue to get the following error. Error in system(paste("mdb-tables -1", file), intern = TRUE) : 'mdb-tables' not found Which i
2008 Jan 14
1
Problems with forms
...;var AucLogin = GetCookie(''QXLRicardo_Nick'');if (AucLogin != null && AucLogin != ''null'' && AucLogin != '''') { document.write(''<span style="font-weight:normal;"><a href="https://www.ricardo.ch/accdb/LogOut.asp">Ausloggen</a> / Angemeldet als:</span> ''); document.write(AucLogin)}else document.write(''<img src="https://images.qxlricardo.com/ImgWeb/2/V3/login/logOUT.gif" border="0" align="middle">&nbsp;Sie sind...