Re: Upsizing from Access doubles varchar columns
From: David Portas (REMOVE_BEFORE_REPLYING_dportas_at_acm.org)
Date: 02/18/05
- Next message: Alejandro Mesa: "RE: stored procedure compare dateTime"
- Previous message: Ludwig via SQLMonster.com: "Does Reporting services have a Dashboard-Guage type graph in its graphics lib?"
- In reply to: Robert Schuldenfrei: "Re: Upsizing from Access doubles varchar columns"
- Next in thread: Robert Schuldenfrei: "Re: Upsizing from Access doubles varchar columns"
- Reply: Robert Schuldenfrei: "Re: Upsizing from Access doubles varchar columns"
- Messages sorted by: [ date ] [ thread ]
Date: 18 Feb 2005 05:14:25 -0800
If you don't need unicode columns then change them all to non-unicode
(VARCHAR, CHAR, TEXT). This is trickier than it sounds because indexes
on those columns have to be recreated - not difficult for one or two
columns, harder if there are many dependent objects. If you are still
in development and happy to drop and recreate everything then the
easiest way is probably be to generate a table creation script (All
Tasks > Generate Script in Enterprise Manager), search and replace all
the references to NVARCHAR, NCHAR and NTEXT then re-run the script.
Take a backup before you do this please! Obviously you'll have to
recreate any data but you will hopefully have mechanisms to do that
anyway in development.
I'm not a fan of Upsizing Wizards. It is unwise to assume that a schema
design in Access will also be appropriate for SQL Server. The best way
is to review what you have and redesign where necessary.
-- David Portas SQL Server MVP --
- Next message: Alejandro Mesa: "RE: stored procedure compare dateTime"
- Previous message: Ludwig via SQLMonster.com: "Does Reporting services have a Dashboard-Guage type graph in its graphics lib?"
- In reply to: Robert Schuldenfrei: "Re: Upsizing from Access doubles varchar columns"
- Next in thread: Robert Schuldenfrei: "Re: Upsizing from Access doubles varchar columns"
- Reply: Robert Schuldenfrei: "Re: Upsizing from Access doubles varchar columns"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|