similar to: large list from mdb.get - change labled atomic to double

Displaying 20 results from an estimated 5000 matches similar to: "large list from mdb.get - change labled atomic to double"

2009 Aug 14
1
reading in mdb and outputting to sql (GIS application)
I have a geodatabase and would like to import it into GRASS, but it is in .mbf. I use mac and linux, and don't have access to access on the machines that I normally use. I do have access to access at school, but I would like to find a way around this if possible. Any thoughts, comments, or suggestions would be welcome. thanks, -- Stephen Sefick Let's not spend our time and resources
2004 Nov 02
2
A little more on R, mdbtools and Access databases
Hi again, I have played a little more with mdbtools and R. I downloaded the latest version of mdbtools from sourceforge (version 0.6pre1). Quickly scanning the mailing list suggests that ODBC seems to work with PHP but I have not been able to get it to work with R. I can make a connection to the database and when I do a query I get back the names of the rows but not the data. I must admit I have
2008 Sep 24
0
Error results from MS Access via RODBC
I have an MS Access database with one table and one column holding rep(1:10) I use: library(RODBC) channel <- odbcConnect("test") sqlQuery(channel, paste("SELECT col FROM tblTest"), believeNRows=FALSE) and get: 49 50 51 52 53 54 55 56 57 12337 What? The above should, of course, read: 1 2 3 4 5 6 7 8 9 10 I tried the 'odbcQuery' /
2006 Sep 21
4
Access and MDB file from Linux
I need to get read only access to a MDB database accessed from a Linux box using samba, anyone had any luck with this and know how to set it up? Please resist from posting your reasons why and MDB should not be used, I am the converted so stop preaching. The MDB is there to stay and I have to read to it. thanks -- Posted via http://www.ruby-forum.com/.
2009 Nov 23
2
Microsoft .mdb files in Open office
Hi, Is there is anyway to Open Microsoft .mdb files in open office on Centos 5.3 ? Thanks linux
2004 Nov 01
3
ms access --> mysql --> R in Linux
I am trying to use some ms access databases in R (version 1.9.1 or 2.0 on a Debian system). In searching the net for promising software to do this, I found mdbtools. Mdbtools claims the ability to convert schemas and tables in MS Access to MySQL and other databases. http://mdbtools.sourceforge.net/ I'm wondering if anyone in the R community has tried using this software to use
2008 Jun 20
2
mdbtools on CentOS
Morning everyone, I was hoping to use mdbtools to extract data from some Access databases overnight. I have yum installed the tools from Dag and also downloaded and (eventually!) compiled the latest release from the mdbtools web site, but I either get 'buffer overflow' errors or no output from most of the tools. I have been trying to cvs checkout the latest development version but
2023 Aug 08
1
[Bridge] Getting + maintaining a consistent MDB view in userspace?
Hi, Is there a recommended way to get and monitor the MDB state from userspace, without potential synchronization races? I can use "bridge monitor mdb" to get changes or "bridge mdb show" to get the current state (as well as use the underlying netlink calls from my own application without the "bridge" command). But if I were first calling "bridge mdb
2006 Oct 31
0
6352071 MDB ::interrupts need not display non-ISR entries on x86
Author: anish Repository: /hg/zfs-crypto/gate Revision: ca260b8c8934dc34091622676f0a58662e217e74 Log message: 6352071 MDB ::interrupts need not display non-ISR entries on x86 6354060 Add ::interrupts support for uppc(7d) based systems Files: create: usr/src/cmd/mdb/i86pc/modules/uppc/Makefile create: usr/src/cmd/mdb/i86pc/modules/uppc/amd64/Makefile create:
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
2012 Dec 20
3
[Bridge] [PATCH 1/3] iproute2: distinguish permanent and temporary mdb entries
This patch adds a flag to mdb entries so that we can distinguish permanent entries with temporary ones. Cc: Stephen Hemminger <shemminger at vyatta.com> Signed-off-by: Cong Wang <amwang at redhat.com> --- bridge/mdb.c | 24 +++++++++++++++--------- include/linux/if_bridge.h | 3 +++ 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/bridge/mdb.c
2010 Feb 11
0
sqlSave data into multiple *.mdb files
Hi All, con <- member <- class <- list() for(i in 1:5) { con[[i]] <- odbcConnectAccess(paste("C:/Desktop/Data/source",i,".mdb",sep = '')) #read data from Access files member[[i]] <- sqlFetch(con[[i]],'member') #get table data from *.mdb files observe[[i]] <- sqlFetch(con[[i]],'observe') #get table data from *.mdb
2012 Dec 10
0
[Bridge] [PATCH v5] iproute2: add mdb sub-command to bridge
From: Cong Wang <amwang at redhat.com> V5: make the output pretty V4: fix filter_dev remove some useless #include V3: improve the output, display router info only for -d fix router parsing code V2: sync with the kernel patch handle IPv6 addr a few cleanup Sample output: # ./bridge/bridge mdb show dev br0 bridge br0 port eth1 group 224.8.8.9 bridge br0 port eth0 group
2012 Jul 11
2
How to connect .mdb file
Hi, I'm currently having some problem connect .mdb file into R. I've installed the RODBC packages and I do the code this way: channel <- odbcConnectAccess("C:/Users/Documents/XYZ") channel and it gave me this : RODBC Connection 3 Details: case=nochange DBQ=C:\USers\JieYi\Documents\NYP\IPP\GCR Driver={Microsoft Access Driver (*.mdb)} DriverId=25 FIL=MS Access
2014 Feb 04
1
Big Problems with samba 4.1 and mdb files
Our installation: 7 x Windows 7 Clients, 1 Samba 4.1.4 Server with Active Directory The clients use mdb databases. ? Our situation: Every 30 to 60 Minutes a windows 7 client cannot receive the actual database. After a new login, the data is actualized. ? Configuration: We tried: ? Oplocks --------------- ?????? oplocks = no ?????? level 2 oplocks = no or ?????? veto oplock files =
2023 Mar 13
1
[Bridge] [PATCH net-next 01/11] net: Add MDB net device operations
Add MDB net device operations that will be invoked by rtnetlink code in response to received RTM_{NEW,DEL,GET}MDB messages. Subsequent patches will implement these operations in the bridge and VXLAN drivers. Signed-off-by: Ido Schimmel <idosch at nvidia.com> --- include/linux/netdevice.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/include/linux/netdevice.h
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 =
2002 Sep 12
0
2.2.5, MSAccess XP Database files (mdb) corrupt
Hi, i have a problem with access xp (2002) database files after moving the files to the linux files server. really often (6 times today) the database file is corrupt. i am running samba 2.2.5 on linux mandrake 8.2 with kernel 2.4.18. i have read that this has something to do with the file locking, but don't know what to do right now. i've set the parameter "veto oplock files =
2008 Aug 25
5
Debugging Xen domain with mdb
Hi, I was just wondering if it is possible to debug a live Xen domain with mdb i.e. use mdb on a running domain? I know that it is possible to debug a domain with mdb using a crash dump. I couldn''t find anything about using mdb on a live domain though so I thought I''d ask here. -Padraig This message posted from opensolaris.org
2006 May 11
1
Samba over Debian Sarge 3.1 R1. This File server store MDB and XLS files.
I have a file server running with Samba over Debian Sarge 3.1 R1. This File server store MDB and XLS files. Could anybody give me an optimal setup for my samba server (smb.conf). Actually, the performance is very poor. I really apreciate your help as soon as possible. My supervisor wants to change the operating system (Linux) for Windows 2003 Server. I do not want to do that. I love