0

クライアントの要件は、MS Access 2007 で実行されている現在のアプリケーションのバックエンドを SQL Server 2005 に変換することです。

.adbこのために、アップサイジング ウィザードを使用して を作成しようとしました。

私が直面している問題は

  • ほとんどすべての複雑なクエリがエラーをスローしています
  • クエリをアップサイズすることは本当に必要ですか?
  • もしそうなら、私は何の手がかりもありません

最終的なアプリケーションは最終的にどのようになりますか? クエリはどこに保管する必要がありますか? (クエリは SQL Server のビューまたはストアド プロシージャとして作成されると言う人もいます)。何も頭に入らず、緊張しています。

誰でもプロセス全体を要約できますか。テーブル以外に移行するものとその方法

私を助けてください。前もって感謝します

4

2 に答える 2

0

@Bharath- Bharath-

Phase-1 First Identify the Backend DBS to migrate. How are the tables in each Backend DB created. Are they one time creation or are imported on monthly bases.

Phase-2 Tools Needed - SQL Server , SSMA for raw migration of the Backend DB. SSIS if the tables are created from the flatfiles.

Use SSMA manily for getting the Data Dictionary. Then recreate the tables in the Dev environment.

Coming to queries. In MS Access they are jet based. You need to rewrite them in T-SQL. This is quite easy task if you are having good/moderate knowledge in SQL.

Create the queries of Access as Views and link them to the FrontEnd.

The main thing here is you have to make a plan and then approach each time you face a problem. There are lot of forums and people ready to help. This is how IT knowledge has grown. So let us know more information.

于 2014-11-06T12:09:56.143 に答える
0

ODBC データ ソースを使用して、すべてのものをそのままにしておくことができます... ご存じのように、最近のバージョンの Microsoft Access では、プロジェクト ファイルへのアクセスがサポートされなくなりました。MS Office を更新する場合は、ODBC データ ソースを使用することをお勧めします。これにより、テーブルが SQL Server に移動されますが、それ以外はすべて Access に保持され、あまり変更する必要はありません。

于 2014-10-10T20:19:02.700 に答える