SQL Server query - copy all tables from query into database -


i have question copy tables query other database.

i use query in sql server:

select * information_schema.tables tablename = '2000' 

this query returns tables. , copy returned tables other database.

thank in advance.

have @ sp_msforeachtable , feed table names information_schema.tables

there example here started sp_msforeachtable example

another example can modified here

this amended suit needs:

exec sp_msforeachtable @command1 = "select count(*) [?] ?", @whereand = "and uid = (select schema_id sys.schemas name = 'dbo')   , o.name 'iin%'" 

replace @command1 copy code (something select * ... , replace @whereand filter tables or in statement if have list.


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -