Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: chunter33
  • Content: Threads
  • Order by date
  1. chunter33

    Corrupt Database - 55,000 Records Lost

    Hi there, shortly I will be investigating an issue regarding an Access 2007 database which is supposedly "corrupted", and some time last week it lost 55,000 records. The details of what went wrong and caused the corruption are very unspecific, all I know is that it happened at some point between...
  2. chunter33

    Microsoft Word Connecting To Access 2007 DB

    Hello, I was having a bit of trouble connecting to an access 2007 database. Before I get into the details, I'll give you a little background. I had a tool running off of Word in the old .doc format, and the code originally connected to an older access 97 database with the old mdb format. The...
  3. chunter33

    Is there a way to speed up this line?

    This might be a shot in the dark, but is there a way for me to speed up this snippet of code? Even a second would count, as this code gets called repeatedly. [code]Me.RecordSource = "SELECT * FROM [" & tbl_task_table & "] where [Task ID] = " & curw_rs.Fields(1).value & ";"[code] I tried to...
  4. chunter33

    Clearing ControlSource Slows Down Code BigTime!

    Hey there, I had a form in access 2007. I had recently upgraded it from 97 where it ran within seconds. Now when I run it it takes something like 20-30 seconds. I pinpointed one of the areas where code was running really slow. 'Unbinds all text and combo boxes from the work form Sub...
  5. chunter33

    Locating/Debugging Slow Code

    Hey there, I will soon be taking on a project regarding optimizing a series of Access databases to run with better performance. In Access 97 these databases ran queries and modules with no trouble at all, however, after upgrading to 2007 there's been a huge impact on speed. I was wondering if...
  6. chunter33

    Access 2007 Cstr() Versus Str() SQL Functions

    Hello, I was wondering what the difference was between using Cstr() and Str() in Access 2007 queries. Where would you use either? From what I've heard, str converts a number to a string but leaves an additional trailing blank space to accommodate negative numbers with the minus symbol at the...
  7. chunter33

    Fix For Missing Library References

    Hey all, Recently I've been running into issues concerning library reference integrity. Essentially, I have a series of databases that were developed on a different system (and much older system), and I'm now in the process of remediation so I can upgrade these databases to later versions...
  8. chunter33

    Access Implicit Datatype Conversions

    I was wondering if JET SQL performs any implicit conversions behind the scenes. For example, I've seen a SELECT clause in the past that would select a number field from a table and simultaneously combine it with a text value. For example: SELECT Table.number & "TEXT" FROM Table; Which would...

Part and Inventory Search

Back
Top