ALTER VIEW view_identifier SET TBLPROPERTIES ( property_key = property_val [ , ... ] )
view_identifier
: Name of the view whose attributes are to be changed.property_key
: Attribute nameproperty_val
: Attribute valuealter view view1 set tblproperties('comment' = 'view1')alter view view1 set tblproperties('property1' = 'value1', 'property2' = 'value2')
Was this page helpful?