ms-access-2010

Why is a MS Access database file with only linked tables comprable in size to the parent database? [closed]

萝らか妹 提交于 2021-02-11 13:49:36
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . Improve this question I am analyzing MS Access 2010 database files that were created by a person who has left the organization. All of the tables in one file, call it "Beta.accdb", are links to tables in another database file (call that one "Alpha.accdb"). I have verified that when I

Issues with Access parsing double quotes in a CSV file

一世执手 提交于 2021-02-10 18:34:43
问题 I have a large CSV file that I am trying to import into Microsoft Access but I am running into issues. Assume pipes represent different cells in the database Assume my content is the below. The second entry will only parse the word my with default settings and will not import the word content into the database even though the import wizard implies that it will. The default settings being , delimiter and " text qualifier. |my content is good| |my| Now if i change the text qualifier to NONE it

is It correct Sql to import data from csv file into msaccess

柔情痞子 提交于 2021-02-08 08:13:19
问题 "INSERT INTO CricketMatch (FName,LastName,Runs,Matches,Location,DateofMatch,PLayerId) SELECT Fname,Lname,Runsby,numberofMatches,MatchLocation,DofMatch,Id FROM [Text;Data Source=C:\\DB\\;HDR=YES].[filename]"; filename is just name with extension demo.csv no path cmd.CDataSet da = new DataSet();string filename = Path.GetFileName(txtCSVFilePath.Text); try {da = this.ConnectCSV(filename); string connstring = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\DB\\MatchDetails.accdb";

is It correct Sql to import data from csv file into msaccess

我怕爱的太早我们不能终老 提交于 2021-02-08 08:12:00
问题 "INSERT INTO CricketMatch (FName,LastName,Runs,Matches,Location,DateofMatch,PLayerId) SELECT Fname,Lname,Runsby,numberofMatches,MatchLocation,DofMatch,Id FROM [Text;Data Source=C:\\DB\\;HDR=YES].[filename]"; filename is just name with extension demo.csv no path cmd.CDataSet da = new DataSet();string filename = Path.GetFileName(txtCSVFilePath.Text); try {da = this.ConnectCSV(filename); string connstring = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\DB\\MatchDetails.accdb";

why does access 2010 with postgresql odbc driver call IDENT_CURRENT?

99封情书 提交于 2021-02-08 03:28:47
问题 I am migrating an access 2003 application to access 2010. The application uses the postgres odbc driver to access its data. On access 2010 it tries to use the IDENT_CURRENT function on the postgresql server (as seen with wireshark) to identify the id of a recently inserted row ... Unfortunately IDENT_CURRENT is not a function supported by postgresql as far as I know ... I am using the latest postgresql ODBC driver (9.0) with a postgresql 8.3 database. 回答1: Using currval is the right way to go

How can I investigate and resolve an (apparent) Access database corruption?

允我心安 提交于 2021-02-07 06:06:24
问题 I have an Microsoft Access 2010 database application with split front end and backend which has started to behave oddly, and I've exhausted all the options I know for investigating and resolving the problem. 32-bit Access 2010 running on Windows 8.1... I have both Access 2010 and Access 2013 installed, but the problem also manifests itself on a Windows 8.1 system with a completely fresh install of Access 2010 and no Office 2013 present. The issue also exists if the application is run using

How to connect UCanAccess to an Access database encrypted with a database password?

百般思念 提交于 2021-02-06 09:31:06
问题 I've developed a Java application (a dictionary) with an Access database to store the words of the dictionary and I'm getting ready to distribute it. I want to encrypt my database with a password to prevent people to access my words. When I set a passwords the Java code shows this Exception net.ucanaccess.jdbc.UcanaccessSQLException: Decoding not supported. Please choose a CodecProvider which supports reading the current database encoding. at net.ucanaccess.jdbc.UcanaccessDriver.connect

Read Registry on Windows 7 with VBA Permission

你。 提交于 2021-02-05 11:59:55
问题 I have a line of code that has worked flawlessly for years on 50+ PCs (Vista & Windows 7 32 & 64 bit) in Access 2007 and Access 2010. RegStr = fReturnRegKeyValue(HKEY_LOCAL_MACHINE, "Software\ThisApp\App", "Activation") On one specific PC (Windows 7 64bit) with An Access2010/VBA module (32 bit) The line of code above does not see the registry key. When I change HKEY_LOCAL_MACHINE to HKEY_CURRENT_USER,it works fine. RegStr = fReturnRegKeyValue(HKEY_CURRENT_USER, "Software\ThisApp\App",

Read Registry on Windows 7 with VBA Permission

限于喜欢 提交于 2021-02-05 11:58:06
问题 I have a line of code that has worked flawlessly for years on 50+ PCs (Vista & Windows 7 32 & 64 bit) in Access 2007 and Access 2010. RegStr = fReturnRegKeyValue(HKEY_LOCAL_MACHINE, "Software\ThisApp\App", "Activation") On one specific PC (Windows 7 64bit) with An Access2010/VBA module (32 bit) The line of code above does not see the registry key. When I change HKEY_LOCAL_MACHINE to HKEY_CURRENT_USER,it works fine. RegStr = fReturnRegKeyValue(HKEY_CURRENT_USER, "Software\ThisApp\App",

How to use VBA variable for IN 'SourceDB' clause of MS-ACCESS query

半城伤御伤魂 提交于 2021-02-04 08:22:28
问题 I am trying to pass a vba string variable to an IN clause of a SQL statement in the query builder view. the string is created by the following function: Public Function GetBackEnd() If Len(GetBackEnd) = 0 Then GetBackEnd = BackEnd End Function backend itself is derived from a dropdown box in userform, there are two entries in a table with two different addresses, one each for the live and developement DB's. The dropdown box sets the "environment" variable upon selection. Property Get BackEnd(