Help needed...

  • hi all

    i have a simple query.

    how can i copy a table from the "master" database to the "pubs" database?

    thanks in advance

  • Can be done using SELECT INTO

    Example:

    use pubs

    go

    select * into dbo.Trial from master.dbo.Trial

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply