Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Using a SQL View


    We have a SQL Database that uses DTS to import customer data from an
    ODBC database into a few tables. We also have created a related table in
    SQL from scratch. The ODBC data updates every half hour. We want the
    customers to be able to update data from the Internet for just the SQL
    table we created in SQL that has user data.

    I was thinking about joining all the tables in a view and just giving
    the Internet users access to change the non ODBC data columns in the
    view. Is this possible? I knbow you can update data in a view, but can
    ASP.Net use a view as a datasource? Help apprecaited. Thanks.

    Frank


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Frank Py Guest

  2. Similar Questions and Discussions

    1. View-View Event Processing
      I am not getting View to View Event processing to work. I have looked through most of the Flex 2 and Flex 3 docs plus several of the Flex books to...
    2. DW Split View - Design View
      When working in DW in Split View, when the user clicks into the Design View window the view automatically updates the view if code view has changed....
    3. Standard View vs. Layout View
      view>table view joe "lilyeq" <webforumsuser@macromedia.com> wrote in message news:bfm6gt$qla$1@forums.macromedia.com... making tables. In...
    4. Code view & Layout view
      Hello all, I have a problem! I have a .htm document where I can see the code view, but I can't see anything in the Layout view. Only the tables....
    5. Wierd error when going to Design View from HTML view
      When I go from HTML view (in a webform) to Design View I get the following error: Could not open in Design view. Quote values differently inside a...
  3. #2

    Default Re: Using a SQL View

    Frank Py wrote:
    > I was thinking about joining all the tables in a view and just giving
    > the Internet users access to change the non ODBC data columns in the
    > view. Is this possible?
    Yes, but you need to carefully read SQL Books Online to make sure you are
    creating updatable views. There are some situations where multiple tables
    are involved where updates will not be possible without an Instead Of
    trigger (SQL 2000), so make sure you read the relevant sections in BOL.
    >I knbow you can update data in a view, but can
    > ASP.Net use a view as a datasource?
    I'm sure it can, but you should ask on one of the dotnet groups to be sure.
    (this group and .asp.general are classic asp groups)

    Bob Barrows
    --
    Microsoft MVP -- ASP/ASP.NET
    Please reply to the newsgroup. The email account listed in my From
    header is my spam trap, so I don't check it very often. You will get a
    quicker response by posting to the newsgroup.


    Bob Barrows 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