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 SkipVought 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: ChrisBattersby
  • Order by date
  1. ChrisBattersby

    My.Ini - InnoDB entries

    I have been using MySQL in a Windows environment for about 6 months and have successfully written a couple of applications. Reading all and anything about MySQL I have been looking into the My.Ini entries, particularly those affecting InnoDB tables. Reading the site...
  2. ChrisBattersby

    Autoincrement field reset unintentionally

    Thanks Mark and DonQuichote for your comments. As outlined in my last post I am always leaving one record in the table now. I have an aversion to storing thousands of useless records - historically due to minimum storage space 34 years ago when I started programming on old ICL mainframes, and...
  3. ChrisBattersby

    Autoincrement field reset unintentionally

    Of course that should have been http://bugs.mysql.com/11946
  4. ChrisBattersby

    Autoincrement field reset unintentionally

    After further research I found some interesting info at http://bugs/mysql.com/11946 which discusses Truncate and Delete of tables/records with autoincrement fields, and points out some documentation conflicts for various versions of MySQL. It still doesn't resolve the problem of why my...
  5. ChrisBattersby

    Autoincrement field reset unintentionally

    The field is int(11)
  6. ChrisBattersby

    Autoincrement field reset unintentionally

    I have setup a table with an autoincrement field solely to supply an application with consecutive numbers for new accounts. The application calls a GetNewAccountNo function, which basically deletes all records from the table then inserts a new record thus supplying the latest incremented number...
  7. ChrisBattersby

    reset autoincrement counter

    Sorry, tried to post a new item and it ended up as a reply to yours. Confusing interface???
  8. ChrisBattersby

    reset autoincrement counter

    I have setup a table with an autoincrement field solely to supply an application with consecutive numbers for new accounts. The application calls a GetNewAccountNo function, which basically deletes all records from the table then inserts a new record thus supplying the latest incremented number...
  9. ChrisBattersby

    Accessing Terminal Services logged in PC

    I need to access the USB drive attached to the PC currently logged into an application via Terminal Services. The API call GetDriveType() returns drives associated with the server running Terminal Services. The application was developed in Delphi 5 running under Windows XP Pro SP2. Any ideas...
  10. ChrisBattersby

    Not unique table/alias: <tablename> for temporary table

    Both my local PC and the server MySQL have full privileges granted Chris
  11. ChrisBattersby

    Not unique table/alias: <tablename> for temporary table

    Good thought, Andrew. The version on my local PC is 5.0.27-community-nt, and that on the server is 5.0.45-community-nt. Maybe the difference.
  12. ChrisBattersby

    Not unique table/alias: <tablename> for temporary table

    I quote from MySQL Cookbook : 'Another property of temporary tables is that they can be created with the same name as a permanent table. In this case, the temporary table "hides" the permanent table for the duration of its existence, which can be useful for making a copy of a table that you can...
  13. ChrisBattersby

    Not unique table/alias: <tablename> for temporary table

    Solved. The problem was naming the temporary table the same as the permanent table, as described in 'MySQL Cookbook' by Paul DuBois, chapter 4.3.
  14. ChrisBattersby

    Not unique table/alias: <tablename> for temporary table

    Important information I omitted : MySQL version is 5.0.45 and all tables are InnoDB
  15. ChrisBattersby

    Not unique table/alias: <tablename> for temporary table

    I’m converting an application from Paradox to MySQL (first time I’ve used this) and am replacing Paradox local tables with MySQL temporary tables – I understand each user will have a unique copy of the table. Basically I issue the following two commands : 'drop temporary table if exists...

Part and Inventory Search

Back
Top