Results 1 to 10 of 10

Thread: Access >>> Ms Sql

  1. #1
    Join Date
    Oct 2004
    Posts
    27

    Access >>> Ms Sql

    is there a perfect way to create a MS SQL 2000 database from an existing MS ACCESS 2003 database

    without datas (empty)

    or

    with datas !!!

    ?
    ?

    thank you

  2. #2
    Join Date
    Feb 2003
    Posts
    1,048
    There is no perfect way to create a MS SQL database from an Access database.

  3. #3
    Join Date
    Oct 2004
    Posts
    27
    ok .... and a way ?

  4. #4
    Join Date
    Feb 2005
    Posts
    14
    Do you want to move only table properties & datatypes, or aslo you want to move relations, data integrity and convert all querries in procedures? =)

    U can move tables thow the ADO or DAO or through the ODBC connectin.
    As I remember, there was an import wizard in MSSQL SERVER...and it had an MSACCESS option...

  5. #5
    Join Date
    Oct 2004
    Posts
    27
    of course I want to get the maximum .. relation, foreign keys ....

    thank you

  6. #6
    Join Date
    Feb 2005
    Posts
    14
    There is no easy way.
    If you want to do that automaticly - you'll have to write a datatype convertor DAO<=>ACCESS, else you'll have to do it by hands...

  7. #7
    Join Date
    Feb 2003
    Posts
    1,048
    Originally posted by gwendaal
    ok .... and a way ?
    Because the two do not support the same things. For example, if you have a VBA Module in Access, what should you convert it to in SQL Server?

  8. #8
    Join Date
    Jan 2003
    Location
    UK
    Posts
    277
    there is an upsizing wizard in MS Access to port it over to SQL Server.

    How complex is your database ?

  9. #9
    Join Date
    Oct 2004
    Posts
    27
    of course without vb module ...

    just tables !!! and relations

    my base is half-complex

    i must look this wizard then...

    thank you

  10. #10
    Join Date
    Feb 2003
    Posts
    1,048
    There is a big difference in functions as well. For example, in Access, you can use Trim() to trim leading and trailing spaces, but in SQL Server you only have RTrim() and LTRim(). And the wizard doesn't automatically convert Trim() to RTrim(LTrim()) for you.

Posting Permissions

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