This is a discussion on Re: Error inserting into partition within the SQL Server Data Warehousing forums, part of the Microsoft SQL Server category; --> there is a very long section in books on line regarding updateable partitioned views, I suggest your start there ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| there is a very long section in books on line regarding updateable partitioned views, I suggest your start there and verify you meet the requirements, OR, as an alternative, load the base tables directly. "Rich" <rstoll@cadencenet.com> wrote in message news:40b401c35601$d1dccb50$a001280a@phx.gbl... > I'm testing a partitioned fact table but get the following > error when I try to insert a record into the view: > > [ODBC SQL Server Driver] UNION ALL view 'VW_BILL_FACT' is > not updateable because a partitioning column not found. > > The view does a UNION ALL on two underlying tables. The > underlying tables(partitions) both have check constraints > defined. > > Help! > > Thanks Rich |
| ||||
| I found the answer to my problem in the Microsoft Knowledge Base Article - 270013. Thanks anyway! >-----Original Message----- >there is a very long section in books on line regarding updateable >partitioned views, I suggest your start there and verify you meet the >requirements, OR, as an alternative, load the base tables directly. > >"Rich" <rstoll@cadencenet.com> wrote in message >news:40b401c35601$d1dccb50$a001280a@phx.gbl... >> I'm testing a partitioned fact table but get the following >> error when I try to insert a record into the view: >> >> [ODBC SQL Server Driver] UNION ALL view 'VW_BILL_FACT' is >> not updateable because a partitioning column not found. >> >> The view does a UNION ALL on two underlying tables. The >> underlying tables(partitions) both have check constraints >> defined. >> >> Help! >> >> Thanks Rich > > >. > |