db connection for a single command

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • brettokumar
    New Member
    • Jul 2008
    • 31

    db connection for a single command

    hi i hav different database i have to link all database table in a single query. how many db-connection can i use in a single command. in asp.net+c#
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Which database are you using? Are the databases on the same computer? Are they on the same RDMS i.e are they all MyQL databases or one is MySQL while the other is SQL Server?

    Comment

    • brettokumar
      New Member
      • Jul 2008
      • 31

      #3
      Originally posted by r035198x
      Which database are you using? Are the databases on the same computer? Are they on the same RDMS i.e are they all MyQL databases or one is MySQL while the other is SQL Server?
      using oracle database server only but have different database

      Comment

      • r035198x
        MVP
        • Sep 2006
        • 13225

        #4
        Originally posted by brettokumar
        using oracle database server only but have different database
        Create the connection as a user with access to both schemas and just prepend the schema and database names to the table names in the select statements

        Comment

        Working...