GTS DB Conversion

25
GTS DB Conversion Going from MS Access to MS SQL Server can be simple… if you let it be.

description

GTS DB Conversion. Going from MS Access to MS SQL Server can be simple… if you let it be. What we did…. Used MS Access 2007 Fixed VB Issues with Access 2007+ Copied Structures and Data up to the Server Added a couple of Indexes on frequently used fields Setup User Security. - PowerPoint PPT Presentation

Transcript of GTS DB Conversion

Page 1: GTS DB Conversion

GTS DB Conversion

Going from MS Access to MS SQL Server can be simple…

if you let it be.

Page 2: GTS DB Conversion

What we did…

• Used MS Access 2007• Fixed VB Issues with Access 2007+• Copied Structures and Data up to the Server• Added a couple of Indexes on frequently used

fields• Setup User Security

Page 3: GTS DB Conversion

Hurdles we faced…

• Leaving design open for a more Optimal UI to be designed

• Change the way Users think about “searching” through their data

• Change control?

Page 4: GTS DB Conversion

Why MS Access 2007?

Reasons…:A. The Wizard makes it easy, especially compared to

prior versions of MS Access.B. The Wizard makes it easy.C. Seriously… you need another reason?

Page 5: GTS DB Conversion

Why not MS Access 2007?

There are reasons not to use the Wizard… or to use it differently.

• You can design from the Ground up… then push data(i.e.: No more complaints about prior developers).

• You can just push the structures, then tweak it.(Useful for particularly large sets of data and data file management)

Page 6: GTS DB Conversion

VB Issues with Access 2007

It could happen to you…

Page 7: GTS DB Conversion

VB Issues with Access 2007

Luckily for us, it’s easy to fix.

Page 8: GTS DB Conversion

VB Issues with Access 2007

Page 9: GTS DB Conversion

VB Issues with Access 2007

Page 10: GTS DB Conversion

VB Issues with Access 2007

Page 11: GTS DB Conversion

VB Issues with Access 2007

Page 12: GTS DB Conversion

VB Issues with Access 2007

Page 13: GTS DB Conversion

Copy Structures and Data to the Server

“…if ever a Wiz there was! ...”

Page 14: GTS DB Conversion

Copy Structures and Data to the Server

Page 15: GTS DB Conversion

Copy Structures and Data to the Server

Page 16: GTS DB Conversion

Copy Structures and Data to the Server

Page 17: GTS DB Conversion

Copy Structures and Data to the Server

Page 18: GTS DB Conversion

Copy Structures and Data to the Server

Page 19: GTS DB Conversion

Copy Structures and Data to the Server

Page 20: GTS DB Conversion

Copy Structures and Data to the Server

Page 21: GTS DB Conversion

Added a couple of Indexes

CREATE NONCLUSTERED INDEX [PI_LName] ON [dbo].[tblPI] (

[PI] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF…

Page 22: GTS DB Conversion

Setup User Security

Page 23: GTS DB Conversion

Setup User Security

Page 24: GTS DB Conversion

Setup User Security

Page 25: GTS DB Conversion

Questions?Comments?Concerns?