Search results

  1. B

    Convert Exisitng Access Database to Access Frontend MySQL backend

    Yes, that's correct. Some people think that if they change backend to SQL Server, Oracle or whatever, it'll magically increase speed. That seldom happens and if they've developed it without considering the server-client architecture, there may be some re-engineering required to optimize the...
  2. B

    Upsizing to MYSQL

    Why not use MySQL's Workbench for GUI interface? The recent release is pretty full-featured. As for a simple way to import Access table, I'm not aware of any free program that does it- I see few commerical programs offering this but I'm of mind it's best to do it from scratch in MySQL -...
  3. B

    Moving from Access 2010 to Access 2007 (Calculated date fields and queries)

    Be aware that they added calculated fields mainly for web applications but the old school method was to do it in the query. So instead of creating a field to calculate the Month name based on another column's month, create a base query that does the same thing then base all your derived queries...
  4. B

    VBA Function Instr?

    Lagbolt, that would be appropriate if we wanted count of elements but I think we wanted count of occurrences (e.g. the delimiter).
  5. B

    VBA Function Instr?

    BTW: you can cut it down to one line: HowMany = Ubound(Split(strInput, strDelimiter, , vbTextCompare)) But that may be a bit too cryptic...
  6. B

    VBA Function Instr?

    Clever, Bob!
  7. B

    VBA Function Instr?

    Something like this, maybe. Dim c As Long Dim i As Long i = 1 Do i = InStr(Mid$(strTest,i), ",") If i Then c = c + 1 End If Loop Until i = 0 Debug.Print "Number of occurances was: " & c (untested)
  8. B

    ODBC over Network

    FWIW - if you already have a existing MySQL infrastructure and you don't want to lose, you may want to see if SQL Server's linked server allow you to work with MySQL tables, most likely as a part of replication schema so your Access client can sync with MySQL data. (I don't know if it's even...
  9. B

    Foreign key vs. required

    DPortas - thanks for that tidbit. I have to admit I can't remember ever encountering a composite primary key referenced as a foreign key - AFAIK, the behavior is identical when we talk about single-field primary key but I was able to reproduce the error you described with composite primary key.
  10. B

    ODBC over Network

    Well, if client installation is such hinderance, the option is to use SQL Server Express which is free and most Windows already has SQL Server ODBC drivers installed. With 2008 R2, you can have up to 10 GB database.
  11. B

    ODBC over Network

    Actually, regardless of how you connect, whether with DSN or not, regardless what type of DSN you use, you are still required to ensure that there are client software installed for the RDBMS of your choice. You may instead program in your front-end file to check that the MySQL ODBC driver is...
  12. B

    ODBC over Network

    Just to clarify: 1) If you're using MySQL and not SQL Server, you'll need to distribute MySQL ODBC driver since they are not installed on Windows PC by default as is the case with SQL Server. 2) I wouldn't call File DSN a DSN-less connection, exactly. As Pbaldy said, it's convenient for...
  13. B

    Foreign key vs. required

    Examples of this? As far as I know, nullable foreign keys seems to be part of the standard. I just verified that nullable foreign key is allowed on SQL Server 2008 R2 and I'm pretty sure it is true with MySQL & PostgreSQL though I''ve not tested it, nor would I want it anyway.
  14. B

    Foreign key vs. required

    I suggest you read the article about cascading to null which hopefully brings out the difference between "Required" property (which corresponds to NOT NULL DDL) and foreign key. Personally I don't like the idea of allow null foreign keys and make my foreign keys required most of time.
  15. B

    Converting 32 bt to 64 bit???

    DCrake - No. 2007 is solidly 32-bit only. Just to be clear here - there's two senses of how we can use "32-bit/64-bit" - WRT the OS or WRT the application. In your scenario, you are likely dealing with 64-bit OS but 32-bit Application (e.g. Office 2007). Because Office 2007 is still 32-bit...
  16. B

    Converting 32 bt to 64 bit???

    First of all, does he REALLY need 64-bit Office? The chance are that he doesn't and would be better off with just 32-bit Office. Microsoft currently recommends against installing 64-bit Office and your user must have went out of his way to get it to install 64-bit. But assuming there is a legit...
  17. B

    Access on the internet

    If your web host allows remote connection, yes. Some may require you to use some form of VPN or remote login, but as long you work it out with web host, this'll work much better.
  18. B

    Access on the internet

    Just to be explicit: I'm led to believe that the security of data is primarily centered around securing the web server and avoiding use of certain code that would allow exploits (e.g. SQL Injections) and less to do with physical storage of data. In other words, many web server communicate with...
  19. B

    Question Do Access databases have to be uploaded to we host

    I'm also aware that some have succeeded in using Access database as a web host, but since your intention is to use it interactively, I think you'll find it a bad idea. Why not just use a free RDBMS (SQL Server Express? MySQL? PostgreSQL?) that you can place on your web host, base your websites...
  20. B

    Form disconnected from associated table-inadvertantly

    Just to help Jeannette (welcome to AWF!) out - Recovering from corruption Preventing corruption
Back
Top Bottom