Datasource management with SQL Server

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

  1. #1

    Default Datasource management with SQL Server

    We're looking at migrating our applications from Interbase to SQL Server 2000.

    Basically, we have a number of databases which, currently, are set up as
    individual datasources (with their own user/password) in CF administrator which
    requires management.

    We are looking at the option of simply using a single CF datasource connection
    to the database server and then specifying which database object is required
    from within the queries themselves. This would mean simpler datasource
    management but introduce the fact that each connection to the server is via the
    same user/password since using a single datasource would mean a single
    user/password combo.

    Any advice as to the best datasource management? I.e. to those that are using
    SQL server behind CF and with more than one application/site requiring indidual
    databases, do you use multiple datasources, i.e. one or two for each, or do you
    access each from the top level access of the server or any other scheme?

    Advice/comments welcome!



    KempAS Guest

  2. Similar Questions and Discussions

    1. Problem creating CFX 7 SQL Server datasource
      When trying to create a SQL Server datasource using CFX7 Coldfusion administrator, I received the following error: # Connection verification...
    2. SQL Server Datasource not found error
      Hi, I have a SQL Server DSN that verifies and looks fine in CF Adminstrator, but when I try to call it, I get Data source kidsroe could not be...
    3. Ad management server
      Hello, We are trying to build an automatic system through which a user can upload a .swf ad (of any stage size, background color and frame rate) we...
    4. File Server Management
      We are planning to deploy a number of Windows 2003 File Server Clusters (two eight way clusters) Every night we need to run a script, currently,...
    5. Cannot log into Oracle Management Server.
      When I login to the Oracle Management Server I got error screen: VTK-1000: Unable to connect to the management server puma. PLease verify that...
  3. #2

    Default Re: Datasource management with SQL Server

    We use separate datasources.

    Any efficiencies gained by only setting up one datasource in the administrator will be offset by the extra typing in the queries.
    Dan Bracuk Guest

  4. #3

    Default Re: Datasource management with SQL Server

    Yep, that was my first thought!

    Think we will go as currently with multiple datasources and also do a top
    level server datasource for the cases where we need inter-database joins.

    Thanks for the reply

    KempAS Guest

  5. #4

    Default Re: Datasource management with SQL Server

    I'm not 100% sure, but you might be able to set up the inter-database permissions in SQL, so you won't have to worry about it in Cold Fusion.
    Dan Bracuk 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