Connecting SQL Server to DW

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Connecting SQL Server to DW

    Hello I'm

    I have a project that is due shortly and I have been trying for about a week
    to connect SQL Server with DW with no success. I have read about the entire
    database connection problem in this forum, mine still not working. I'm in
    desperate need of help...Below are the steps that I have taken to try to
    connect sql server and DW. Please take a look at the step to make sure that it
    is correct. Also if you have a better way please let me know. Thanks.

    Manage Sites (Section)
    Local Info
    Site name: Test_Site
    loacl root folder: C:\Website\Test_Site\
    (checked "refresh local file list automatically")

    Remote Info
    Access: Local/Network
    Remote folder: w:\wwwroot\Test_Site\
    (checked "refresh local file list automatically")

    Testing Server
    Server model: ASP.NET VB
    Access: Local/Network
    Testing server folder: w:\wwwroot\Test_Site\
    (checked "refresh local file list automatically")

    URL perfix: [url]http://xx.xx.xxx.x/Wwwroot/test_site/[/url]

    Application (Section)

    Database (Tab)
    SQL Server Connection
    Connection name: Conn_Test_Site
    Connection string: Persist Security Info=False;
    Data Source=[xx.xx.xxx.x];
    (on the remote server)
    Initial Catalog=[Test_Database]; (on the remote server)

    When I connect the database to DW it does not show the tables. Below are some
    important information.

    - I use the Enterprise Manager on my desktop to connect to SQL Server, the
    server ip
    address is xx.xx.xxx.x
    - I have IIS installed on the same box SQL Server is installed on. (Both are
    on remote site)
    - I?m running Windows 2000 Professional on my desktop.
    - DW is installed on my desktop



    Mike1500 Guest

  2. Similar Questions and Discussions

    1. Connecting to SQL server
      Are settings configured wrong? Of course both possible reasons given are both true, that is the web services is up and running and the ODBC DSN...
    2. Connecting SQL Server with DW using ASP.NET VB
      Hello All, I'm trying to connect SQL Server with DW using ASP.NET VB using several connection strings and getting different error messages. The...
    3. connecting to dsn on server
      I have a website on a shared server at CrystalTech. They say: Your data source verified. The connection string you should use in your code is...
    4. Connecting to SQL Server from ASP.NET
      Hi, Hi I have SQL Server Instances running on same machine. How do i connect to the "SecondInstance" of SQL Server on a machine from ASP.NET? ...
    5. Web Server connecting to Informix Server
      I am running an OLTP system with Informix 7.3 IDS on HPUX. We are considering writing some web interfaces to connect to the database. At first we...
  3. #2

    Default Re: Connecting SQL Server to DW

    Check your database permissions. If you don't have SELECT permission on a
    table, it won't appear in the list. Same goes for stored procedures and
    EXECUTE permission. Make sure that the account you're using to connect with
    in your connection string is the account that has the permissions.

    If you really want to make sure it's not permissions, temporarily set the
    connection string to use the 'sa' user. If you can see your tables then,
    you know you have a permission problem. If not, you know there's some other
    problem.

    "Mike1500" <webforumsuser@macromedia.com> wrote in message
    news:cv2iu4$irr$1@forums.macromedia.com...
    > Hello I'm
    >
    > I have a project that is due shortly and I have been trying for about a
    week
    > to connect SQL Server with DW with no success. I have read about the
    entire
    > database connection problem in this forum, mine still not working. I'm in
    > desperate need of help...Below are the steps that I have taken to try to
    > connect sql server and DW. Please take a look at the step to make sure
    that it
    > is correct. Also if you have a better way please let me know. Thanks.
    >
    > Manage Sites (Section)
    > Local Info
    > Site name: Test_Site
    > loacl root folder: C:\Website\Test_Site\
    > (checked "refresh local file list automatically")
    >
    > Remote Info
    > Access: Local/Network
    > Remote folder: w:\wwwroot\Test_Site\
    > (checked "refresh local file list automatically")
    >
    > Testing Server
    > Server model: ASP.NET VB
    > Access: Local/Network
    > Testing server folder: w:\wwwroot\Test_Site\
    > (checked "refresh local file list automatically")
    >
    > URL perfix: [url]http://xx.xx.xxx.x/Wwwroot/test_site/[/url]
    >
    > Application (Section)
    >
    > Database (Tab)
    > SQL Server Connection
    > Connection name: Conn_Test_Site
    > Connection string: Persist Security Info=False;
    > Data
    Source=[xx.xx.xxx.x];
    > (on the remote server)
    > Initial Catalog=[Test_Database]; (on the remote server)
    >
    > When I connect the database to DW it does not show the tables. Below are
    some
    > important information.
    >
    > - I use the Enterprise Manager on my desktop to connect to SQL Server,
    the
    > server ip
    > address is xx.xx.xxx.x
    > - I have IIS installed on the same box SQL Server is installed on. (Both
    are
    > on remote site)
    > - I?m running Windows 2000 Professional on my desktop.
    > - DW is installed on my desktop
    >
    >
    >

    CMBergin 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