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

Are .DBF tables appropriate for Web/Cloud applications?

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

    #16
    Re: Are .DBF tables appropriate for Web/Cloud applications?

    Originally posted by Steve Wood View Post
    Today's your lucky day because they upped the max storage to 10GB for MSSQL 2012 Express - http://www.sqlmag.com/article/sql-se...ditions-143625
    And this is true also with SQL Server 2008 R2 Express

    Comment


      #17
      Re: Are .DBF tables appropriate for Web/Cloud applications?

      Reminds me of when I maxed out my 10MB drive with dBaseIII code.
      Steve Wood
      See my profile on IADN

      Comment


        #18
        Re: Are .DBF tables appropriate for Web/Cloud applications?

        Originally posted by Jay Talbott View Post
        Scalability, stability, and security are three reasons for me to say that SQL tables are the way to go.
        And if you are choosing dbfs because of ease of transition, make active link tables and append the dbf files to them.
        I have had too many problems with indexes breaking on web apps to ever want to use dbfs again.
        (by the way, is there Noel in Ancaster, Ontario?)

        Jay
        This sounds interesting. I'd like to see an example of this..... ( make active link tables and append the dbf files to them. )
        And also, what are some of the "implications & benefits" of doing this? I presume you're referring to this?: <TBL>.APPEND()

        Note: I've (thus far) only worked with a5 while using .dbf's, and am presently reviewing your "webinar videos", Jay!
        Last edited by SNusa; 02-06-2013, 06:48 PM.
        Robert T. ~ "I enjoy manipulating data... just not my data."
        It's all about the "framework." (I suppose an "a5-induced" hard drive crash is now in order?)
        RELOADED: My current posting activity here merely represents a "Momentary Lapse Of Reason."

        Comment


          #19
          Re: Are .DBF tables appropriate for Web/Cloud applications?

          Robert,
          First, anyone who mentions a Pink Floyd album in there signature line can't be all bad, so I will attempt to answer your question.
          I could make a video of what I describe, but it is fairly simple. Using the connection string, you create an active link table (in the Control Panel, right click and choose New Table, then Active Link Table.) Follow the prompts and name the active link table. This creates a dbf table with a direct link to the sql back end table.
          You can manipulate the active link table like any other dbf table.
          Yes, you use <tbl>.append and append records to the table. They appear in the sql back end.
          Hope this helps. If not, post again.
          All the best,
          Jay

          "Sometimes the details are "Obscured by Clouds"
          Jay Talbott
          Lexington, KY

          Comment


            #20
            Re: Are .DBF tables appropriate for Web/Cloud applications?

            Originally posted by Jay Talbott View Post
            Robert,
            First, anyone who mentions a Pink Floyd album in there signature line can't be all bad, so I will attempt to answer your question.
            I could make a video of what I describe, but it is fairly simple. Using the connection string, you create an active link table (in the Control Panel, right click and choose New Table, then Active Link Table.) Follow the prompts and name the active link table. This creates a dbf table with a direct link to the sql back end table.
            You can manipulate the active link table like any other dbf table.
            Yes, you use <tbl>.append and append records to the table. They appear in the sql back end.
            Hope this helps. If not, post again.
            All the best,
            Jay

            "Sometimes the details are "Obscured by Clouds"
            Thanks Jay..... (Good training videos too!)
            Upon first reading your post: I was wondering whether there might have been a way to pre-configure a .dbf database in a way that you could instantly "remap" (relink) to a sql back-end. (Of course that's what the "up-sizer" is presumably for, which I have yet to use.)

            As for the "Floyd thing" ~ they have been one of my favorites since the early 80's.
            Robert T. ~ "I enjoy manipulating data... just not my data."
            It's all about the "framework." (I suppose an "a5-induced" hard drive crash is now in order?)
            RELOADED: My current posting activity here merely represents a "Momentary Lapse Of Reason."

            Comment


              #21
              Re: Are .DBF tables appropriate for Web/Cloud applications?

              Robert,
              Thanks for the kind words about the videos.
              The upsizing is a one direction action only. It will take a dbf and make it a SQL table, but it will not create a link to that table once the table is created.
              After the SQL tables exist (whether created by upsizing, or created in the back end) they can be accessed (sorry to have to use that word) by active link tables. Active like tables are like pipes between the desktop in the form of dbf tables (or pseudo-dbf tables) and the SQL tables in the back end. Records that are created, modified, or deleted in the active link tables are treated the same way in the SQL back end tables. I hope this has made things clearer, and not muddied the waters further.
              Jay
              Jay Talbott
              Lexington, KY

              Comment


                #22
                Re: Are .DBF tables appropriate for Web/Cloud applications?

                Originally posted by Jay Talbott View Post
                Robert,
                Thanks for the kind words about the videos.
                The upsizing is a one direction action only. It will take a dbf and make it a SQL table, but it will not create a link to that table once the table is created.
                After the SQL tables exist (whether created by upsizing, or created in the back end) they can be accessed (sorry to have to use that word) by active link tables. Active like tables are like pipes between the desktop in the form of dbf tables (or pseudo-dbf tables) and the SQL tables in the back end. Records that are created, modified, or deleted in the active link tables are treated the same way in the SQL back end tables. I hope this has made things clearer, and not muddied the waters further.
                Jay
                Access & MDB's... (I haven't opened one of those up in quite some time.)

                One quick question: I presume you have to use Alpha DAO for this to work, right?

                Regarding your response, it makes perfect sense. The last time I spent a lot of time working with SQL tables and Alpha was back just prior to the "active link tables" addition to a5. (only passive read support) Things have become quite different since then, and I'm soon to be headed back down that SQL path with a5. ~ Now to make the choice between MySQL and MS.... I always thought MySQL all the way, but as of lately, I don't know. Time for a little research on this.... I think that in the end, it will all come down to system resources, the "Enterprise Manager" (or whatever they're presently referred to as respectively) & "installation invasive-ness!" ~ I guess that's not even a word, but it's one of my concerns.

                As for the videos you and Steve Workings did for v.10: Access to these videos was the main reason I opted for a "charter subscription" back in 2010. ~ They've literally been the most valuable/beneficial part of the subscription thus far. I couldn't have "gotten to this point" without them.
                Last edited by SNusa; 02-07-2013, 12:14 AM.
                Robert T. ~ "I enjoy manipulating data... just not my data."
                It's all about the "framework." (I suppose an "a5-induced" hard drive crash is now in order?)
                RELOADED: My current posting activity here merely represents a "Momentary Lapse Of Reason."

                Comment


                  #23
                  Re: Are .DBF tables appropriate for Web/Cloud applications?

                  Robert,
                  You wrote:
                  One quick question: I presume you have to use Alpha DAO for this to work, right?
                  Yes, you have to use Alpha DAO for this work.
                  And for my two cents worth, I really like MS SQL Server. It is the best product to come out of Redmond.
                  Jay
                  Jay Talbott
                  Lexington, KY

                  Comment


                    #24
                    Re: Are .DBF tables appropriate for Web/Cloud applications?

                    Thanks Jay.

                    One of the concerns I have always had regarding migrating to SQL back-ends is the performance issues on the desktop side. (For that reason I had decided to avoid SQL until I dig deeper into the web side of a5.) ~ Based on your sound judgement, am I holding back unnecessarily while working on "the desktop side?" (From what I've read here on the forums, active SQL links provide very poor performance, particularly with sets. So much so, that most recommend staying with .dbf for desktop usage unless one is an XDialog guru.)

                    While I'm on the topic of MS SQL: Last winter I came across a new (Express) variant from MS & posted about it. Nobody at the time had any knowledge of this. It's called LocalDB. http://msgboard.alphasoftware.com/al...hlight=LocalDB

                    http://www.microsoft.com/en-us/sqlse...s/express.aspx <-- Expand the "what's new" section at page bottom to see why LocalDB may be of interest to developers.

                    Another later link here with no real answers:
                    http://msgboard.alphasoftware.com/alphaforum/showthread.php?100078-SQL-recommendation&highlight=LocalDB


                    With regards to this LocalDB variant of MS SQL Express: I'm wondering if this "lighter than express" (which is an option during express installation) component works with a5..... If so, it seems like it may be a viable & smart way to integrate SQL to the desktop. ~ Providing of course that active links (on the desktop) are not "too slow" to be viable.

                    MSDN Reference links:
                    http://msdn.microsoft.com/en-us/library/hh245842.aspx
                    http://msdn.microsoft.com/en-us/libr...QL.110%29.aspx
                    Last edited by SNusa; 02-07-2013, 10:46 AM.
                    Robert T. ~ "I enjoy manipulating data... just not my data."
                    It's all about the "framework." (I suppose an "a5-induced" hard drive crash is now in order?)
                    RELOADED: My current posting activity here merely represents a "Momentary Lapse Of Reason."

                    Comment


                      #25
                      Re: Are .DBF tables appropriate for Web/Cloud applications?

                      Originally posted by aeonsys View Post
                      Thanks to all, you have my agreement on most of the above. Might as well pay the pain/price now then try to retrofit to SQL later and have multiples of pain/price to pay, inevitably.

                      Jay of whom/what are you referring to? If you mean snow, yes, but freezing rain and a warm up followed. Or Xmas, yes, there is but not for me right now :)
                      I have used A-5 .dbf files in "the cloud" (Zebra Host) for over a year with no troubles whatsoever. Wisht I had started with SQL first and "paid the price" early on. I have to use MS-Abcess to make SQL queries for my users. Now I am afraid to try to switch from .dbf to SQL mid stream.

                      Comment

                      Working...
                      X