Results 1 to 4 of 4

Thread: Select Into Query Help

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2010
    Posts
    92

    Select Into Query Help

    Dear Friends,

    Good Morning.

    Once again i am coming with a new request.......

    I want to insert the local db tables values into my hosters Database.

    And i want to insert the 8 table values into remote 8 tables in a single shot with a where clause.

    In this manner, i am going to use the following code.....If its wrong, please correct it..


    Select * into servername.database.dbo.table1 from tabel1 where id='TG123'

    Select * into servername.database.dbo.table2 from tabel2 where id='TG123'

    Select * into servername.database.dbo.table3 from tabel3 where id='TG123'

    Select * into servername.database.dbo.table4 from tabel4 where id='TG123'

    Select * into servername.database.dbo.table5 from tabel5 where id='TG123'

    Select * into servername.database.dbo.table6 from tabel6 where id='TG123'

    Select * into servername.database.dbo.table7 from tabel7 where id='TG123'

    Select * into servername.database.dbo.table8 from tabel8 where id='TG123'


    Thanks in advance.

    Yours
    GUNA

  2. #2
    PowerPoster
    Join Date
    Nov 2002
    Location
    Manila
    Posts
    7,629

    Re: Select Into Query Help

    Check syntax of INSERT INTO...SELECT... statement

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Aug 2010
    Posts
    92

    Re: Select Into Query Help

    My Friend,

    Can you help in syntax for my goal?

    Thanks in advance.

    - Guna

  4. #4
    PowerPoster abhijit's Avatar
    Join Date
    Jun 1999
    Location
    Chit Chat Forum.
    Posts
    3,228

    Re: Select Into Query Help

    The syntax to insert into a table usually starts with
    INSERT INTO <tablename> <fields> SELECT <fields> from <tablename>
    Everything that has a computer in will fail. Everything in your life, from a watch to a car to, you know, a radio, to an iPhone, it will fail if it has a computer in it. They should kill the people who made those things.- 'Woz'
    save a blobFileStreamDataTable To Text Filemy blog

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width