Moving to SQL from Access

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Moving to SQL from Access

    Hi i have recently upgraded my hosting package and this includes SQL and so
    from now i wish to make available SQL to clients. I am looking for general
    advice like: How do you get over the non autonumber access provided for your
    primary keys? Is there anything major you need to consider when using SQL over
    Access? Is it easy to upgrade from Access to SQL? And any thing else that i
    might need to think about? Thanks in advance Gubs

    Gubbins Guest

  2. Similar Questions and Discussions

    1. Moving From Access to MS SQL Server
      I am wanting to move my databases from access to sql and was hoping to get some suggestions or advice before I start. 1. Is the program similar...
    2. Moving from MS access to Mysql
      Okay I have had it with ms access. I am thinking heavily about moving to mysql. What kind of problems might I have? Will I have to rewite all my...
    3. Moving to specified row
      I have a datagrid that contains multiple rows that each have a button column. The users click on a button in one of these columns and data is...
    4. Moving Randomly Moving Sprite To New Location on mouseEnter
      Hi All, This is way over my head. I am currently using Director 8. I have a randomly moving sprite(call it X) on stage (I accomplished this...
    5. Moving from 4.1 OS 9 to 6.04 OS X
      I currently am running 4.1 while in OS X using OS 9 Classic and sharing the files with 3 other local computers also running in OS X and 1 computer...
  3. #2

    Default Re: Moving to SQL from Access


    "Gubbins" <webforumsuser@macromedia.com> wrote in message
    news:cvnjtv$i0$1@forums.macromedia.com...
    > Hi i have recently upgraded my hosting package and this includes SQL and
    so
    > from now i wish to make available SQL to clients. I am looking for general
    > advice like:
    How do you get over the non autonumber access provided for your
    > primary keys?
    You can define your primary key to be anything which makes sense. If you
    want a surrogate key as your primary key like Access does, just set up an
    Identity column with the seed and increment both set to 1.

    Is there anything major you need to consider when using SQL over
    > Access?
    Your interaction with the database will be very different. You don't
    "upload" a SQL Server database, so developing locally and then moving to the
    live server is a bit more involved. Also, to develop locally, you'll need
    to download the MSDE from Microsoft.

    Is it easy to upgrade from Access to SQL?

    Yes. There are wizards to make it relatively painless.

    And any thing else that i
    > might need to think about?
    You may need to alter some of your queries, but mainly you'll be learning
    about all sorts of new abilities you have. If you're not comfortable in
    Enterprise Manager and Query Analyzer, you can visit [url]www.charon.co.uk[/url] for a
    tutorial on how to connect to SQL Server via the Access interface.

    Thanks in advance Gubs
    >

    CMBergin Guest

  4. #3

    Default Re: Moving to SQL from Access

    Use Microsoft Access Projects.
    It is great.

    SoCal
    Webconsul470 Guest

  5. #4

    Default Re: Moving to SQL from Access

    thanks for that chaps! i was thinking about using a unique id in the form say AAAA1234 how would i increment that?

    thanks

    Gubs
    Gubbins Guest

  6. #5

    Default Re: Moving to SQL from Access

    You would have to build something like that in the form

    --
    Regards

    Paul Whitham
    Macromedia Certified Professional for Dreamweaver MX2004
    Valleybiz Internet Design
    [url]www.valleybiz.net[/url]

    Team Macromedia Volunteer for Ultradev/Dreamweaver MX
    [url]www.macromedia.com/support/forums/team_macromedia[/url]

    "Gubbins" <webforumsuser@macromedia.com> wrote in message
    news:cvo8pi$t86$1@forums.macromedia.com...
    > thanks for that chaps! i was thinking about using a unique id in the form
    say AAAA1234 how would i increment that?
    >
    > thanks
    >
    > Gubs

    Paul Whitham TMM Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139