Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

corrupted indexes

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #31
    RE: corrupted indexes

    My (newly refined) theory is that in rare cases, as tables get bigger, indexes with many duplicate key values get messed up at some unpredictable - but definitely repeatable point. My guess is it has something to do with the combination of the length of the indexed field, the number of duplicate values and ? who knows.

    This would be the case in your table where you may end up with 1000 "Smiths" in the index defined on last name alone. In the case of my problem last week I had an index that might have had 15000 identical "D7140" key values for that index. I was able to get rid of the index and so the problem.

    If all this is, in fact, accurate then you will need to change the index definition somehow. Could you use the combo of last name and ID? Wouldn't that preserve the order as it is now?

    F.
    Finian

    Comment


      #32
      RE: corrupted indexes

      Hello Finian,

      ""My (newly refined) theory is""

      What does this mean for a 'flag' type field, or a logical field, where key values will only be one of a few limited values?

      Good to see you again at the conference. I really enjoyed your presentation I was able to attend.

      Thanks,
      Jim

      Comment


        #33
        RE: corrupted indexes

        If the theory holds true you would think they would be susceptible, but I haven't seen it myself.

        Counting Richard's problem, this is my third exerience with this error. Based on this small sample, I think the theory has some validity. If I have time this weekend I'll dig out that table and play with it some more. If I can demonstrate the problem clearly I'll send it along to Selwyn.

        The conference was a lot of fun. Nice to see you and all the other old friends again. Including some guy called John Bowen who claims he knows me. (Just kidding, John!)

        Finian
        Finian

        Comment


          #34
          RE: corrupted indexes

          In playing with it, I found that by indexing on UNIQUE records instead of ALL records, the problem appears to go away. Since, by the nature of the application, each record is unique, this has no effect on the program logic. It does, however, force Alpha Five to keep other record information that makes each index "unique", and aparently stops the symptoms.

          I want to thank everyone for their help and support. This one had me sweating bullets.

          Rick Smith

          Comment


            #35
            RE: corrupted indexes

            It has been my experience that even if you have no duplicate values you should set the index as "All" instead of "Unique".
            The only time when "Unique only" should be used is with the primary key of the table.

            This was an interesting thread. I learned something else to look out for.

            The Mexican
            The Mexican

            Comment


              #36
              RE: corrupted indexes

              It has been my experience that even if you have no duplicate values you should set the index as "All" instead of "Unique".
              The only time when "Unique only" should be used is with the primary key of the table.

              This was an interesting thread. I learned something else to look out for.

              The Mexican
              -------------------------------------------------------

              Interesting. I never use the "Unique" option for an idex--even for the primary key. I always select "All" and enforce unique values with Xbasic. I have never been forced to re-build an index for a client (even though I have done so when on site just as a precaution).

              Comment


                #37
                RE: corrupted indexes

                I'm sure you know this, but the unique property of an index does not enforce every key being unique, it only includes unique keys in the index. Hence, if you have an index on lastname, you can have multiple records where the last name is 'smith', but only one of these multiple records will exist in the 'unique' index.

                Jim

                Comment


                  #38
                  RE: corrupted indexes

                  Jim,

                  Agreed. It's for this reason that most users should never use it. Otherwise, an index on lastname field alone would contain but one entry for each "Smith" in the table.

                  -- tom

                  Comment


                    #39
                    RE: corrupted indexes

                    Steve:

                    Are you using V5 but not using any autoincrement fields/keys?

                    The only thing I REALLY dislike about V5 is its insistence on creating a unique index for autoincrement fields, so you frequently end up with 2 indexes on the key field, one for unique and one for all. Then spend time tracking through set definitions and field rules trying to find what forces the creation of the second index. Extremely annoying.

                    F.
                    Finian

                    Comment


                      #40
                      RE: corrupted indexes

                      The way I get around this is that the index has the first occurance of "smith". The table then has all the rest of the "smith" entries listed after the oner that's indexed. I then manually (in Xbasic) run through the records with the last name "smith". I rely on the index to just get me to the start of the list.

                      Comment


                        #41
                        RE: corrupted indexes

                        Steve:

                        Are you using V5 but not using any autoincrement fields/keys?

                        The only thing I REALLY dislike about V5 is its insistence on creating a unique index for autoincrement fields, so you frequently end up with 2 indexes on the key field, one for unique and one for all. Then spend time tracking through set definitions and field rules trying to find what forces the creation of the second index. Extremely annoying.
                        -----------------------------------------------
                        Absolutely, Finian. I wouldn't use an autoincrement field on a bet. I do provide Xbasis functionality to automatically assign a key value (e.g. a next number button for an invoice number, etc.), but I only read a system control file to get the next number which is then incremented. And, yes, if the user cancels data entry on the current invoice, the sequencial number is forever lost. Mas90/200, Solomon, Great Plains, all do the exact same thing (even if they provide an option to write the deleted invoice out to the history files). My view of Autoincrement fields is that they are an invitation to disaster. At times, I think there should be a separate message board just for this issue.
                        I try to keep indexes short where possible.
                        I try to use very few indexes.
                        I avoid triming and complex expressions.
                        I virtually NEVER use a filter of any kind and instead make use of queries and ranges where needed.
                        I never add an index without considering the impact on the table and the engine that has to maintain the index.

                        Comment


                          #42
                          RE: corrupted indexes

                          I agree with all of your indexing "policies" and hew to them pretty generally myself.

                          I do, however use autoincrement fields. Up to about 2 years ago we would lose the indexes on some of those fields on a regular basis. Since we redesigned our data entry screens those incidents have dropped down to pretty much zero.

                          F.
                          Finian

                          Comment

                          Working...
                          X