datasource linked servers

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default DataSource Linked Servers

    How can i create a datasource from a linked server in SQL Server
    cfpaez Guest

  2. Similar Questions and Discussions

    1. Frontend Web Servers connect to Coldfusion Servers
      I need some help getting a front end web server cluster (iis) talking with the backend colfusion app cluster (j2ee install). Do I have to install...
    2. Join a query datasource and oledb datasource?
      Using CF5 here. I have a query that I'm creating on the fly using the QueryNew() and QueryAddRow() functions. Then I run my query using...
    3. Mac OSX servers?
      Is this a longshot here? has there ever been any thought from Macromedia to develope Flash Communication Server to run from a Mac xServer - or am I...
    4. Update one datasource using a 2nd datasource?
      I have a CF app using an Access 2000 DB, Treasury. One of the tables holds user data (i.e. location, city, state, supervisor, etc.). This data is...
    5. statically linked tcl conflict with dynamically linked tcl error
      My solaris 8 computer have a dynamically linked tclsh as the default. After another statically linked tclsh is executed, the computer environment...
  3. #2

    Default datasource linked servers

    How can i create a datasource from a linked server in SQL Server
    cfpaez Guest

  4. #3

    Default Re: DataSource Linked Servers

    The linked server can be accessed through a four-part naming convention or an OPENQUERY statement. Just create the datasource to link to the parent SQL instance.
    philh Guest

  5. #4

    Default Re: datasource linked servers

    Guessing you have you have a datasource setup on one sql server and you are
    trying to connect to another sql server as a linked server. One way would be to
    setup a datasource on the first sql server. Then write the query like:

    <cfquery name="qry" datasource="firstserverdatasource">
    select * from openquery(linkedservername,'select * from linkedservertable')
    </cfquery>
    I didn't try this but it should work.

    jeffcg2 Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139