Modify Backend db from the Frontend

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • philelpko
    New Member
    • Nov 2006
    • 31

    Modify Backend db from the Frontend

    Good Morning all,

    Lost once again which is becoming a common occurance atm.

    My database has successfully been broken into a frontend and a backend db. A problem has now arisen as it has become apparant that db managers need to add additional field names to a table.

    I cant find anyway that access will allow you to create additional fields to already existing tables in the backend from the frontend.

    In a nutshell, is it possible to create new fields on tables in a backend database from the frontend of the database?

    Cheers for any help!
  • George Oro
    New Member
    • Jan 2007
    • 36

    #2
    Why don't you just add it on the BE? or you want to do this programatically in the FE?

    George



    Originally posted by philelpko
    Good Morning all,

    Lost once again which is becoming a common occurance atm.

    My database has successfully been broken into a frontend and a backend db. A problem has now arisen as it has become apparant that db managers need to add additional field names to a table.

    I cant find anyway that access will allow you to create additional fields to already existing tables in the backend from the frontend.

    In a nutshell, is it possible to create new fields on tables in a backend database from the frontend of the database?

    Cheers for any help!

    Comment

    • philelpko
      New Member
      • Nov 2006
      • 31

      #3
      Originally posted by George Oro
      Why don't you just add it on the BE? or you want to do this programatically in the FE?

      George
      I am trying to make it as easy to use as possible so (fingers crossed) it will need minimal admin intervention. The hope was that a user with the right security setting could do this from a form on the FE.

      Comment

      • George Oro
        New Member
        • Jan 2007
        • 36

        #4
        100% its doable. What will be the next step after adding the field? Most probably you will view this in the form to input some data right? If so, eventually you still need to go to the design view.

        George


        Originally posted by philelpko
        I am trying to make it as easy to use as possible so (fingers crossed) it will need minimal admin intervention. The hope was that a user with the right security setting could do this from a form on the FE.

        Comment

        • philelpko
          New Member
          • Nov 2006
          • 31

          #5
          Originally posted by George Oro
          100% its doable. What will be the next step after adding the field? Most probably you will view this in the form to input some data right? If so, eventually you still need to go to the design view.

          George
          Not quite.

          The table consists of several fields containing various information about the users i.e. Names, Logon, e-mail etc

          Several of these fields are of a Yes/No format with the field title being the specific project that the person is on i.e. Q35164

          The need to add a new field comes from the introduction of a new project, hence another Yes/No field is required.

          I am unfortunatly thinking that it will be quicker just to create a new table containing user names and the projects they are working on and using DLookup to filter the data.

          Comment

          • George Oro
            New Member
            • Jan 2007
            • 36

            #6
            Sorry but not 100% clear what you up to but it seems you have to change your approach.

            Wish you luck mate.

            George


            Originally posted by philelpko
            Not quite.

            The table consists of several fields containing various information about the users i.e. Names, Logon, e-mail etc

            Several of these fields are of a Yes/No format with the field title being the specific project that the person is on i.e. Q35164

            The need to add a new field comes from the introduction of a new project, hence another Yes/No field is required.

            I am unfortunatly thinking that it will be quicker just to create a new table containing user names and the projects they are working on and using DLookup to filter the data.

            Comment

            • hariharanmca
              Top Contributor
              • Dec 2006
              • 1977

              #7
              Originally posted by philelpko
              Not quite.

              The table consists of several fields containing various information about the users i.e. Names, Logon, e-mail etc

              Several of these fields are of a Yes/No format with the field title being the specific project that the person is on i.e. Q35164

              The need to add a new field comes from the introduction of a new project, hence another Yes/No field is required.

              I am unfortunatly thinking that it will be quicker just to create a new table containing user names and the projects they are working on and using DLookup to filter the data.
              for this you can create two tables
              and inner goin tables with ids

              Comment

              • philelpko
                New Member
                • Nov 2006
                • 31

                #8
                Originally posted by hariharanmca
                for this you can create two tables
                and inner goin tables with ids
                All is well again. Shame I had to create the extra table but if it makes life easy so be it.

                Cheers all for the feedback and suggestions!

                Comment

                • hariharanmca
                  Top Contributor
                  • Dec 2006
                  • 1977

                  #9
                  Originally posted by philelpko
                  All is well again. Shame I had to create the extra table but if it makes life easy so be it.

                  Cheers all for the feedback and suggestions!

                  just Consider today you created one field and next day you created one field how you come to know the fields available?
                  So that you have to keep track on the created fields.
                  Of course, you can use field count but it doesn’t make any sense.

                  Comment

                  • NeoPa
                    Recognized Expert Moderator MVP
                    • Oct 2006
                    • 32645

                    #10
                    I'm not sure exactly what you ended up doing, but it sounded before as though you were trying to work in an 'inadvisable' way. The recommended way to add data of the type you were describing would be to put it in a field in another table. If you've done something like that then you've probably saved yourself some trouble and have a more manageable database.
                    Good luck.

                    Comment

                    Working...