The tables have the same name, for example my database saves it's self each fysical year so you have a bunch of databases like MyDB99, MyDb98 etc... the table names and structure for each is the same. I want to be able to query a table from each of the databases, let me call it MyTable, so MyDB99 and MyDb98 both have a table called MyTable. My solution was to use the SELECT INTO statement to create a dublicate of MyTable in MyDatabase98 called MyTable98 and then attache it into MyDb99 and then do my query, but this is slow and error prone , does anybody know a better way?<br>
Thanks
Thanks