SQL server 2005 express
I installed this software and the seperate management tool and really liked its interface compared to SQL server 2000 developer. I'm thinking of uninstalling SQL server 2000 and going with this 2005 Express version instead. However I couldn't find any way to import MS Access tables into the database, which you could do easily in SQL server 2000. Also, Query Analyser if not provided. How do I get hold of the import/export tools/wizards and Query Analyser for SQL 2005 I know there is a built in querying tool with the management console but is that as powerful and Quary Analyser
Considering I'm working on a development PC (not a production server), is it worth getting rid of SQL server 2000 for this 2005 Express version
Thanks for your help

SQL Server 2005 express: Where is Import/Export and Query Analyser?
ZaceOne
Mike:
is there ANY way to get a copy of this SSIS thing and incorporate it into either Web Developer Express of SQL Server Express
regards, David Wilson.
Tinus Groenewald
The Import/Export wizards are not included in SQL Express as those are part of the functionality of SSIS, which is not part of SQL Express. If you have SSIS from a different Edition of SQL Server, it will work against Express. There are a number of other options for moving data into SQL Express from Access:
* Export the data from Access into your SQL database via ODBC
* Use the Access Upsize wizard to move the database to SQL
* Export the data from Access to text and use BCP to pull it into SQL
* Create the tables in SQL, then link them into Access and use an Append query to put the data into the linked tables
Hope this helps,
Mike