Dovresti usare sql dinamico e concatenare il nome della tabella nella stringa SQL per poi eseguire tramite sp_executsql:
select @sqlstring = 'select @numrowsOUT = count(*) from ' + QUOTENAME(@tablename)
EXECUTE sp_executesql ....
Dovresti usare sql dinamico e concatenare il nome della tabella nella stringa SQL per poi eseguire tramite sp_executsql:
select @sqlstring = 'select @numrowsOUT = count(*) from ' + QUOTENAME(@tablename)
EXECUTE sp_executesql ....
MS Excel:unisci dati esterni (SQL) con una tabella locale (foglio)
Distribuzione e gestione del cluster MySQL NDB con ClusterControl
Come utilizzare la procedura guidata di importazione/esportazione in SQL Server - Esercitazione su SQL Server / TSQL Parte 104
Consigli sulle prestazioni di SQL Server da Brent Ozar e Pinal Dave